* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

body {
    font-family: "Lato", Arial, Helvetica, sans-serif;
    background-color: #f0dd80;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-image: linear-gradient(to right top, #fefefe, #b5defb, #a1d8ff, #2ca7ff, #006ebd);
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

input, a, button {
    outline: none !important;
    border: none !important;
    overflow: visible !important;
}

/* Loader */
.loaderContainer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 19999;
	background-color: rgba(0, 0, 0, 0.2);
}

.loaderContainer i {
	font-size: 50px;
	color: #212121;
}
/* END OF Loader */

#mainContainer {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
}


/* Login Form */
#loginFormContainer {
    background-color: rgb(0, 110, 189);
    width: 450px;
    padding: 20px;
    z-index: 5;
    border-radius: 15px;
}

.logoContainer {
    width: 100%;
    text-align: center;
}

.logoContainer img {
    width: 30%;
}


#loginFormMessage{
    height:40px;
    padding-top: 10px;
}

.form-check-input:checked {
    background-color: rgb(107, 193, 255);
}

.loginBtns{
    color: white;
    height: 34px;
    width: 100%;
    background-color: rgb(107, 193, 255);
    border-radius: 5px;
}

.loginBtnContainer .loginBtn:hover {
    background-color: rgb(107, 193, 255);
}

#forgotPasswordBtnContainer {
    width: 100%;
    padding-top: 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#forgotPasswordBtnContainer #goToForgotPassword {
    font-size: 15px;
    line-height: 1.4;
    color: white;
}

#forgotPasswordBtnContainer .rememberMyAddressContainer {
    font-size: 15px;
    line-height: 1.4;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 4px;
}

#forgotPasswordBtnContainer .rememberMyAddressContainer input {
    margin-right: 6px;
}

#forgotPasswordBtnContainer .rememberMyAddressContainer label {
    margin-top: 5px;
}
/* END OF Login Form */


/* Forgot Password Form */
#forgotPasswordContainer {
    background-color: rgb(255, 255, 255);
    width: 650px;
    padding: 20px;
    z-index: 5;
}

#forgotPasswordForm {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.forgotPasswordInputContainer {
    position: relative;
    border-right: 1px solid #E0E0E0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    width: 100%;
    height: 75px;
    border: 1px solid #E0E0E0;
    border-bottom: none;
    background-color: #FFFFFF;
}

.forgotPasswordInputContainer .forgotPasswordInput {
    height: 100%;
    transition: all 0.3s;
    font-size: 15px;
    color: #555555;
    line-height: 1.2;
    display: block;
    width: 100%;
    background: transparent;
    padding: 0 30px;
}

.forgotPasswordResetBtnContainer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.forgotPasswordResetBtnContainer #forgotPasswordBtn {
    font-size: 15px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1.2;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 70px;
    overflow: hidden;
    background-color: rgb(107, 193, 255);
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.forgotPasswordResetBtnContainer #forgotPasswordBtn:hover {
    background-color: rgba(0, 87, 191, .7);
}

.goBackToSignInFormBtnContainer {
    width: 100%;
    padding-top: 23px;
    text-align: center !important;
}

.goBackToSignInFormBtnContainer #goBackToSignInFormBtn {
    font-size: 15px;
    line-height: 1.4;
    color: rgb(107, 193, 255);
}
/* END OF Forgot Password Form */



/* Reset Password Form */
#resetPasswordFormContainer {
    background-color: rgb(255, 255, 255);
    width: 650px;
    padding: 20px;
    z-index: 5;
}

#resetPasswordForm {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.resetPasswordInputContainer {
    position: relative;
    border-right: none;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    width: 50%;
    height: 75px;
    border: 1px solid #E0E0E0;
    border-bottom: none;
    background-color: #FFFFFF;
}

.resetPasswordInputContainer .resetPasswordInput {
    height: 100%;
    transition: all 0.3s;
    font-size: 15px;
    color: #555555;
    line-height: 1.2;
    display: block;
    width: 100%;
    background: transparent;
    padding: 0 30px;
}

.resetPasswordConfirmInputContainer {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    width: 50%;
    height: 75px;
    border: 1px solid #E0E0E0;
    border-bottom: none;
    background-color: #FFFFFF;
}

.resetPasswordConfirmInputContainer .resertPasswordConfirmInput {
    height: 100%;
    transition: all 0.3s;
    font-size: 15px;
    color: #555555;
    line-height: 1.2;
    display: block;
    width: 100%;
    background: transparent;
    padding: 0 30px;
}

.resetPasswordBtnContainer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.resetPasswordBtnContainer .resetPasswordBtn {
    font-size: 15px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1.2;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 70px;
    overflow: hidden;
    background-color: rgb(107, 193, 255);
    transition: 0.7s;
    position: relative;
    z-index: 1;
}

.resetPasswordBtnContainer .resetPasswordBtn:hover {
    background-color: rgba(0, 87, 191, .7);
}
/* END OF Reset Password Form */


.redColor {
    color: #E32D2D;
}

.greenColor {
    color: #21B541;
}


/* Responsiveness */
@media (max-width: 576px) {
    .emailInputContainer,
    .resetPasswordInputContainer {
        width: 100%;
        border-right: 1px solid #E0E0E0;
    }

    .passwordInputContainer,
    .resetPasswordConfirmInputContainer {
        width: 100%;
    }
}
/* END OF Responsiveness */