/* ============================================= */
/* Forgot Password Page */
/* ============================================= */

.forgot-password-page {
    padding: 60px 0;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.forgot-password__form-wrapper {
    max-width: 480px;
    width: 100%;
    background: #F8FCFE;
    border: 1px solid #E1F5FE;
    border-radius: 8px;
    padding: 40px;
}

.forgot-password__header {
    text-align: center;
    margin-bottom: 32px;
}

.forgot-password__title {
    font-size: 28px;
    font-weight: 600;
    color: #1D1D1B;
    margin-bottom: 12px;
}

.forgot-password__subtitle {
    font-size: 15px;
    font-weight: 400;
    color: #2C3E50;
    line-height: 1.5;
}

.forgot-password__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.forgot-password__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.forgot-password__label {
    font-size: 14px;
    font-weight: 500;
    color: #2C3E50;
}

.forgot-password__input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E1F5FE;
    border-radius: 4px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s;
}

.forgot-password__input:focus {
    outline: none;
    border-color: #A7E7FE;
}

.forgot-password__info {
    background: #ffffff;
    border-radius: 4px;
    padding: 12px;
    margin: 8px 0;
}

.forgot-password__note {
    font-size: 13px;
    font-weight: 400;
    color: #2C3E50;
    line-height: 1.5;
}

.forgot-password__btn {
    width: 100%;
    margin-top: 8px;
    padding: 14px;
    font-size: 16px;
}

.forgot-password__footer {
    text-align: center;
    margin-top: 16px;
}

.forgot-password__link {
    font-size: 14px;
    font-weight: 500;
    color: #2C3E50;
    transition: color 0.3s;
}

.forgot-password__link:hover {
    color: #1A5276;
}

/* Блок успеха */
.forgot-password__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

    text-align: center;
    margin-top: 24px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #A7E7FE;
    border-radius: 4px;
}
.forgot-password__success-actions{
    margin: 20px 5px;
}
.forgot-password__success-icon {
    width: 48px;
    height: 48px;
    background: #A7E7FE;
    color: #1D1D1B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}

.forgot-password__success-message {
    font-size: 15px;
    font-weight: 400;
    color: #2C3E50;
    line-height: 1.5;
}

.forgot-password__btn {
    width: 100%;
    margin-top: 8px;
    padding: 12px 24px;
    background: #A7E7FE;
    color: #1D1D1B;
    font-weight: 500;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.forgot-password__btn:hover {
    background: #8FD8F0;
}

/* Адаптив */
@media (max-width: 768px) {
    .forgot-password-page {
        padding: 40px 20px;
    }

    .forgot-password__form-wrapper {
        padding: 30px 20px;
    }

    .forgot-password__title {
        font-size: 24px;
    }
}