.auth-body{
    min-height:100vh;
    background:
            radial-gradient(circle at top left, rgba(62,207,142,.08), transparent 30%),
            radial-gradient(circle at bottom right, rgba(62,207,142,.05), transparent 25%),
            var(--bg-main);
}

.auth-shell{
    min-height:100vh;
    display:grid;
    grid-template-columns: 1.05fr .95fr;
}

.auth-brand-panel{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:48px;
    border-right:1px solid var(--border);
    background:
            linear-gradient(180deg, rgba(255,255,255,.01), rgba(255,255,255,0)),
            var(--bg-sidebar);
}

.auth-brand-wrap{
    width:100%;
    max-width:520px;
}

.auth-badge{
    display:inline-flex;
    align-items:center;
    border:1px solid rgba(62,207,142,.2);
    background:rgba(62,207,142,.08);
    color:var(--accent);
    border-radius:999px;
    padding:8px 12px;
    font-size:.82rem;
    margin-bottom:18px;
}

.auth-title{
    margin:0 0 12px;
    font-size:3.2rem;
    line-height:1;
    letter-spacing:-.04em;
    font-weight:780;
}

.auth-subtitle{
    margin:0 0 28px;
    color:var(--text-muted);
    font-size:1.05rem;
    line-height:1.6;
    max-width:460px;
}

.auth-feature-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.auth-feature-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:14px 16px;
    border:1px solid var(--border);
    background:rgba(255,255,255,.015);
    border-radius:14px;
}

.auth-feature-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:var(--accent);
    margin-top:6px;
    box-shadow:0 0 0 5px rgba(62,207,142,.12);
    flex:0 0 auto;
}

.auth-feature-title{
    font-weight:650;
    margin-bottom:4px;
}

.auth-feature-text{
    color:var(--text-muted);
    line-height:1.5;
    font-size:.94rem;
}

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

.auth-card{
    width:100%;
    max-width:460px;
    background:var(--bg-panel);
    border:1px solid var(--border);
    border-radius:20px;
    padding:28px;
    box-shadow:var(--shadow);
}

.auth-card-top{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:24px;
}

.auth-logo{
    width:54px;
    height:54px;
    border-radius:16px;
    background:linear-gradient(135deg,var(--accent),#1f8f62);
    color:#07110c;
    font-weight:800;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.25rem;
}

.auth-card-label{
    color:var(--text-muted);
    font-size:.85rem;
    margin-bottom:4px;
}

.auth-card-title{
    margin:0;
    font-size:1.55rem;
    line-height:1.1;
    letter-spacing:-.03em;
}

.auth-form{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.auth-success{
    margin-top:14px;
    color:#86efac;
    font-size:.92rem;
    min-height:22px;
}

.form-group{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.form-group label{
    color:var(--text-muted);
    font-size:.9rem;
}

.form-group input{
    width:100%;
    background:var(--bg-panel-2);
    border:1px solid var(--border);
    color:var(--text-main);
    border-radius:12px;
    padding:14px 15px;
    font:inherit;
    outline:none;
    transition:.18s ease;
}

.form-group input::placeholder{
    color:var(--text-soft);
}

.form-group input:focus{
    border-color:rgba(62,207,142,.45);
    box-shadow:0 0 0 4px rgba(62,207,142,.12);
}

.auth-submit{
    margin-top:6px;
    width:100%;
    padding:14px 18px;
    font-size:1rem;
}

.auth-error{
    margin-top:14px;
    color:#fca5a5;
    font-size:.92rem;
    min-height:22px;
}

.auth-links{
    margin-top:18px;
    display:flex;
    justify-content:space-between;
    gap:12px;
    flex-wrap:wrap;
}

.auth-links a{
    color:var(--text-muted);
    font-size:.92rem;
}

.auth-links a:hover{
    color:var(--text-main);
}

@media (max-width: 980px){
    .auth-shell{
        grid-template-columns:1fr;
    }

    .auth-brand-panel{
        border-right:none;
        border-bottom:1px solid var(--border);
        padding:28px 20px;
    }

    .auth-title{
        font-size:2.3rem;
    }

    .auth-form-panel{
        padding:20px;
    }

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

.auth-success{
    margin-top:14px;
    color:#86efac;
    font-size:.92rem;
    min-height:22px;
}