/* Auth pages */
.auth-wrap {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg);
}

.auth-side {
    background:
        radial-gradient(circle at 30% 30%, rgba(99,102,241,.25), transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(16,185,129,.18), transparent 60%),
        var(--bg-elevated);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--border);
}

.auth-side .logo {
    font-size: 1.2rem;
}

.auth-pitch h2 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -.02em;
}

.auth-pitch h2 .grad {
    background: linear-gradient(120deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-pitch p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 400px;
}

.auth-bullets {
    list-style: none;
    margin-top: 28px;
}

.auth-bullets li {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: .95rem;
}

.auth-bullets i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(16,185,129,.15);
    color: var(--accent);
    display: grid;
    place-items: center;
    font-size: .65rem;
}

.auth-foot {
    color: var(--text-dim);
    font-size: .85rem;
}

.auth-form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.auth-card {
    width: 100%;
    max-width: 400px;
}

.auth-card h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -.01em;
}

.auth-card .sub {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: .95rem;
}

.auth-switch {
    text-align: center;
    margin-top: 22px;
    color: var(--text-muted);
    font-size: .9rem;
}

.auth-switch a {
    color: var(--primary-light);
    font-weight: 600;
}
.auth-switch a:hover {
    text-decoration: underline;
}

.auth-mobile-logo {
    display: none;
}

@media (max-width: 880px) {
    .auth-wrap {
        grid-template-columns: 1fr;
    }
    .auth-side {
        display: none;
    }
    .auth-mobile-logo {
        display: block;
        text-align: center;
        margin-bottom: 32px;
    }
    .auth-form-side {
        padding: 30px 20px;
    }
}
