* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

body {
    font-family: "Lato", Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
    background-color: #999999;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

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(255, 255, 255);
    width: 650px;
    padding: 20px;
    z-index: 5;
}

.logoContainer {
    width: 100%;
    text-align: center;
}

.logoContainer img {
    width: 30%;
}

#loginForm {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.emailInputContainer {
    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;
}

.emailInputContainer .emailInput {
    height: 100%;
    transition: all 0.3s;
    font-size: 15px;
    color: #555555;
    line-height: 1.2;
    display: block;
    width: 100%;
    background: transparent;
    padding: 0 30px;
}

.passwordInputContainer {
    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;
}

.passwordInputContainer .passwordInput {
    height: 100%;
    transition: all 0.3s;
    font-size: 15px;
    color: #555555;
    line-height: 1.2;
    display: block;
    width: 100%;
    background: transparent;
    padding: 0 30px;
}

.loginBtnContainer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.loginBtnContainer .loginBtn {
    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: #212121;
    transition: 0.7s;
    position: relative;
    z-index: 1;
}

.loginBtnContainer .loginBtn:hover {
    background-color: #888888;
}

.messageContainer {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0px;
}

#forgotPasswordBtnContainer {
    width: 100%;
    padding-top: 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#forgotPasswordBtnContainer #forgotPasswordBtn {
    font-size: 15px;
    line-height: 1.4;
    color: #212121;
}

#forgotPasswordBtnContainer .rememberMyAddressContainer {
    font-size: 15px;
    line-height: 1.4;
    color: #212121;
    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 #forgotPasswordSubmitBtn {
    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: #212121;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.forgotPasswordResetBtnContainer #forgotPasswordSubmitBtn:hover {
    background-color: #999999;
}

.goBackToSignInFormBtnContainer {
    width: 100%;
    padding-top: 23px;
    text-align: center !important;
}

.goBackToSignInFormBtnContainer #goBackToSignInFormBtn {
    font-size: 15px;
    line-height: 1.4;
    color: #212121;
}
/* 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: #212121;
    transition: 0.7s;
    position: relative;
    z-index: 1;
}

.resetPasswordBtnContainer .resetPasswordBtn:hover {
    background-color: #999999;
}
/* 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 */