.forgot-password-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 156px 80px 80px;
    width: 100%;
    box-sizing: border-box;
}

.forgot-password-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 1120px;
    text-align: center;
}

.forgot-password-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    color: #1F242E;
    margin: 0;
}

.forgot-password-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 34px;
    line-height: 48px;
    color: #1F242E;
    margin: 0;
}

.forgot-password-form-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 24px;
    width: 100%;
    max-width: 930px;
    background: #E5F1FE;
    backdrop-filter: blur(100px);
    border-radius: 24px;
}

.forgot-password-input-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.forgot-password-actions {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-end;
    width: 100%;
}

.btn-forgot-password {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    width: 300px;
    background: #D1D6E0;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #495368;
    transition: all 0.3s ease;
}

.btn-forgot-password:hover {
    background: #b8bfce;
}

.btn-forgot-password:active {
    background: #a0a9bb;
}

@media (max-width: 1024px) {
    .forgot-password-container {
        padding: 100px 40px 60px;
    }

    .forgot-password-title {
        font-size: 36px;
        line-height: 44px;
    }

    .forgot-password-subtitle {
        font-size: 24px;
        line-height: 36px;
    }

    .forgot-password-form-box {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .forgot-password-container {
        padding: 80px 20px 40px;
        gap: 32px;
    }

    .forgot-password-title {
        font-size: 28px;
        line-height: 36px;
    }

    .forgot-password-subtitle {
        font-size: 18px;
        line-height: 28px;
    }

    .forgot-password-form-box {
        padding: 20px;
        gap: 24px;
    }

    .btn-forgot-password {
        width: 100%;
    }
}
