.forgot-password-wrapper {
    position: absolute;
    top: 90px;
    background-color: #f5f5f5;
    left: 0;
    right: 0;
    bottom: 28px;
    z-index: 999;
    height: 100vh;
}

.forgot-password-wrapper .forgot-password-container {
    width: 450px;
    margin: 0 auto;
    padding-top: 150px;
}

.forgot-password-wrapper .forgot-password-container .inp-group {
    margin-bottom: 30px;
}

.forgot-password-wrapper .forgot-password-container h2 {
    font-size: 40px !important;
    line-height: 48px !important;
    text-align: center;
    font-weight: 400;
    margin-bottom: 35px;
    color: #262626;
}

.forgot-password-wrapper .forgot-password-container p {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 40px;
    color: #262626;
}

.forgot-password-wrapper .forgot-password-container label {
    display: block;
    color: #262626;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

.forgot-password-wrapper .forgot-password-container input {
    height: 56px;
    width: 100%;
    border: 1px solid #d4d3d3;
    border-radius: 8px;
    padding: 10px 25px;
    font-size: 18px;
    line-height: 24px;
    color: #262626;
    background-color: #fff;
    outline: none !important;
}

.forgot-password-wrapper .forgot-password-container button {
    background-color: var(--main-color);
    color: #fff;
    border: none;
    height: 56px;
    width: 100%;
    border-radius: 8px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    font-family: 'Roboto';
    cursor: pointer;
    outline: none;
}

.forgot-password-wrapper .forgot-password-container button.loading {
    cursor: not-allowed;
}

.forgot-password-wrapper .forgot-password-container button.loading::before {
    content: "";
    width: 24px;
    height: 24px;
    display: inline-block;
    background-image: url(/uploads/loader.svg);
    vertical-align: middle;
    background-repeat: no-repeat;
    margin-right: 10px;
    background-size: contain;
    margin-top: -1px;
    animation: loadingspin 1s linear infinite;
}

@keyframes loadingspin {
	0% { transform: rotate(0deg); }
	100% { transform:rotate(360deg); }
}

.forgot-password-wrapper .forgot-password-container .error-msg span {
    display: block;
    color: #ff5454;
    padding: 20px 5px 0px 5px;
    text-align: center;
    font-size: 16px;
    font-weight: normal;
}

span.reset-sent {
    text-align: center;
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #262626;
}