.forgot-password-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px;
    background: #f8f9fb;
}

.forgot-password-card {
    width: 100%;
    max-width: 460px;

    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);

    padding: 40px;
}

.forgot-password-card h1 {
    margin: 0 0 10px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
}

.forgot-password-card p {
    margin: 0 0 28px;
    color: var(--text-light);
    line-height: 1.6;
}

.forgot-password-card input {
    width: 100%;
    height: 50px;

    padding: 0 16px;
    margin-bottom: 20px;

    border: 1px solid var(--border);
    border-radius: 12px;

    font-size: .95rem;

    transition: .2s;
}

.forgot-password-card input:focus {
    outline: none;
    border-color: #171717;
}

.forgot-password-card .btn {
    width: 100%;
    height: 50px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 20px;

    background: none;
    border: none;

    color: var(--text-light);

    cursor: pointer;

    font-size: .95rem;
    font-weight: 500;

    transition: .2s;
}

.back-btn:hover {
    color: var(--text);
}

.back-btn i {
    font-size: .9rem;
}