.forgot-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 10% 0%, rgba(59, 130, 246, .12), transparent 32rem),
        radial-gradient(circle at 90% 10%, rgba(16, 185, 129, .12), transparent 28rem),
        #f6f8fb;
    display: flex;
    align-items: center;
}

.forgot-card {
    max-width: 560px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(226, 232, 240, .95);
    border-radius: 32px;
    padding: 38px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, .10);
    backdrop-filter: blur(14px);
    text-align: center;
}

.forgot-icon {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    background: linear-gradient(135deg, #2563eb, #16a34a);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 16px 34px rgba(37, 99, 235, .25);
    margin-bottom: 18px;
}

.forgot-card h1 {
    color: #0f172a;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -.05em;
    margin: 8px 0 10px;
}

.forgot-card p {
    color: #64748b;
    line-height: 1.7;
    margin: 0 auto 24px;
    max-width: 440px;
}

.forgot-form {
    text-align: left;
    margin-top: 22px;
}

.forgot-form label {
    display: block;
    color: #0f172a;
    font-weight: 850;
    margin-bottom: 8px;
}

.forgot-input {
    height: 56px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    margin-bottom: 18px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.forgot-input:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}

.forgot-input i {
    color: #2563eb;
}

.forgot-input input {
    border: 0;
    outline: 0;
    background: transparent;
    width: 100%;
    color: #0f172a;
    font-weight: 700;
}

.forgot-input input::placeholder {
    color: #94a3b8;
}

.forgot-success {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-radius: 999px;
    padding: 11px 15px;
    background: #dcfce7;
    color: #166534;
    font-weight: 850;
    margin-bottom: 22px;
}

.forgot-back-link {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    color: #64748b;
    text-decoration: none;
    font-weight: 800;
}

.forgot-back-link:hover {
    color: #2563eb;
}

@media (max-width: 680px) {
    .forgot-card {
        padding: 26px;
        border-radius: 24px;
    }

    .forgot-icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        font-size: 1.6rem;
    }
}