body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 8% 12%, rgba(244, 183, 64, 0.16), transparent 26rem),
        radial-gradient(circle at 90% 16%, rgba(44, 122, 94, 0.16), transparent 28rem),
        linear-gradient(180deg, #f7fbf8 0%, #ffffff 52%, #f5faf7 100%);
}

.forgot-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.forgot-shell {
    width: min(960px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1fr);
    gap: 1rem;
    align-items: stretch;
}

.forgot-visual,
.forgot-card {
    border: 1px solid rgba(44, 122, 94, 0.12);
    border-radius: 30px;
    box-shadow: 0 26px 72px rgba(30, 42, 44, 0.1);
    overflow: hidden;
}

.forgot-visual {
    min-height: 520px;
    padding: 2rem;
    color: #ffffff;
    background:
        linear-gradient(145deg, rgba(21, 70, 52, 0.94), rgba(44, 122, 94, 0.76)),
        url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.forgot-visual-content {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.forgot-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 800;
}

.forgot-brand img,
.forgot-logo {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.forgot-visual h1 {
    max-width: 430px;
    font-size: clamp(2.15rem, 5vw, 3.6rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: 0;
    margin: 0 0 1rem;
}

.forgot-visual p {
    max-width: 420px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin-bottom: 0;
}

.forgot-tips {
    display: grid;
    gap: 0.75rem;
}

.forgot-tip {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.9rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.forgot-tip i {
    margin-top: 0.2rem;
}

.forgot-tip span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

.forgot-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    width: 100%;
    padding: clamp(1.4rem, 3vw, 2.3rem);
}

.forgot-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.forgot-card-header h2 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0.8rem 0 0.35rem;
}

.forgot-card-header p {
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}


.reset-note {
    padding: 0.85rem;
    border-radius: 16px;
    background: rgba(44, 122, 94, 0.08);
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.55;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.25rem;
    color: var(--accent, #2c7a5e);
    text-decoration: none;
    font-weight: 800;
    transition: 0.2s;
}

.back-link:hover {
    color: var(--accent-dark, #1f5e48);
    transform: translateX(-4px);
}

@media (max-width: 991.98px) {
    .forgot-shell {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .forgot-visual {
        min-height: auto;
        padding: 1.35rem;
    }

    .forgot-visual-content {
        min-height: 300px;
    }
}

@media (max-width: 575.98px) {
    .forgot-wrapper {
        padding: 0.85rem;
        align-items: flex-start;
    }

    .forgot-visual,
    .forgot-card {
        border-radius: 24px;
    }
}
