.forgot {
    width: 100%;
    height: 100vh;
    background-color: #cae4ef;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-repeat: no-repeat;
    background-position: 100% 95%;
    background-size: 168px;
}

body {
    height: 100%;
}

.forgot .forgot-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 15rem;
}

.forgot .inputContainer {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
    row-gap: 5px;
}

.forgot .inputContainer .inputTitle {
    font-family: "Metropolis Medium";
    font-size: 12px;
    font-weight: 500;
    line-height: 1.33;
    letter-spacing: 0.12px;
    color: #0d4962;
}

.forgot .forgot-container input {
    width: 100%;
    height: 42px;
    border: 0;
    font-family: "Metropolis Medium";
    background-color: #ffffff;
    border-radius: 8px;
    color: #0d4962;
    font-size: 12px;
    letter-spacing: 0.12px;
    padding: 10px;
}

.forgot .forgot-container input::placeholder {
    font-family: "Metropolis Medium";
    border-radius: 8px;
    color: #0d4962;
    font-size: 12px;
    letter-spacing: 0.12px;
}

.forgot .forgot-container .button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 42px;
    font-family: "Metropolis Bold";
    letter-spacing: 0.17px;
    color: white;
    font-size: 13px;
    margin-top: 30px;
    text-transform: uppercase;
    background-color: #0d4962;
    opacity: 1;
    cursor: pointer;
}

.forgot .forgot-container .button.disabled {
    opacity: 0.3;
    cursor: auto;
}

.forgot .footer {
    color: #19a5de;
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    position: absolute;
    bottom: 10px;
    cursor: pointer;
}

.forgot .error {
    color: red;
    font-size: 16px;
    margin-top: 18px;
}

.forgot .titleContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 45px 0;
	row-gap: 10px;
}

.forgot .logoImage {
    background-size: contain;
    background-repeat: no-repeat;
    width: 330px;
}

.forgot .forgot-container .title {
    font-family: "Metropolis Bold";
    font-size: 24px;
    letter-spacing: 0.24px;
    color: #0d4962;
}

.forgot .forgot-container .subTitle {
    font-family: "Metropolis Regular";
    font-size: 16px;
    letter-spacing: 0.16px;
    color: #0d4962;
}

.forgot .forgot-container .back {
	font-family: "Metropolis Bold";
	font-size: 13px;
	letter-spacing: 0.17px;
    color: #0d4962;
	margin-top: 20px;
}


/* DARK THEME ENABLED */

.forgot.dark {
    background-color: #031821;
}

.forgot.dark .inputContainer > *,
.forgot.dark .forgot-container input::placeholder,
.forgot.dark .forgot-container .title,
.forgot.dark .forgot-container .subTitle,
.forgot.dark .forgot-container .back,
.forgot.dark .forgot-container {
    color: rgba(255, 255, 255, 0.87);
}

.forgot.dark .forgot-container input {
    background-color: #0d4962;
}

/* MEDIA QUERIES */

/* Mobile */
@media (max-width: 768px) {
    .forgot {
        background-position: 100% 107%;
    }
    .forgot .forgot-container {
        padding: 0 1rem;
    }

    .forgot .forgot-container .title {
        font-size: 18px;
        letter-spacing: 0.18px;
    }

    .forgot .forgot-container .subTitle {
        font-size: 12px;
        letter-spacing: 0.12px;
    }
}

/* iPad */
@media (min-width: 768px) and (max-width: 1024px) {
    .forgot .forgot-container {
        padding: 0 7rem;
    }
}

/* OVERRIDE AUTOCOMPLETE COLOR FILL INPUTS BY WEBKIT BASED WEB BROWSERS */
.forgot input:-webkit-autofill,
.forgot input:-webkit-autofill:focus {
    box-shadow: 0 0 0 1000px #ffffff inset;
    -webkit-text-fill-color: #0d4962;
}

.forgot.dark input:-webkit-autofill,
.forgot.dark input:-webkit-autofill:focus {
    box-shadow: 0 0 0 1000px #0d4962 inset;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.87);
}

/* MODAL */
.forgotPassword .modal-header {
	border-bottom: none;
}

.forgotPassword .modal-header #_closeHeader > span {
	font-family: 'Metropolis Medium';
    font-size: 24px;
    color: #0d4962;
}

.forgotPassword .modalContainer {
	display: flex;
    flex-direction: column;
    align-items: center;
}

.forgotPassword .modalContainer img {
	width: 84px;
	margin-bottom: 16px;
}

.forgotPassword .modalContainer .title {
	font-family: "Metropolis Bold";
	font-size: 24px;
	letter-spacing: 0.24px;
    color: #0d4962;
}

.forgotPassword .modalContainer .info {
	font-family: "Metropolis Medium";
	font-size: 18px;
	letter-spacing: 0.18px;
    color: #0d4962;
	text-align: center;
}

.forgotPassword.dark .modal-header #_closeHeader > span,
.forgotPassword.dark .modalContainer .title,
.forgotPassword.dark .modalContainer .info  {
	color:rgba(255, 255, 255, 0.87);
}

.forgotPassword.dark .modal-content {
	background-color: #0d4962;
}