:root {
    --accent: #ff7a18;
    --blue: #5cc8ff;
    --muted: #cbd5e1;
}

.login-shell {
    width: 100%;
    max-width: 980px;
    margin: 56px auto 0;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(340px, 440px);
    gap: 32px;
    align-items: start;
}

.auth-signin {
    grid-template-columns: minmax(320px, 1fr) minmax(340px, 420px);
}

.auth-register {
    grid-template-columns: minmax(340px, 1fr) minmax(340px, 420px);
}

.login-side {
    padding: 28px 8px 0 0;
}

        .eyebrow {
            display: inline-flex;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.10);
            color: var(--blue);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

.login-side h1 {
    margin: 18px 0 12px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.04;
    max-width: 12ch;
}

.login-side p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
    max-width: 48ch;
}

.side-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.side-points span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 14px;
}

.auth-side-card {
    margin-top: 22px;
    max-width: 420px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.auth-side-card strong {
    display: block;
    margin-bottom: 8px;
    color: #e2e8f0;
}

.auth-side-card p {
    color: var(--muted);
}

.card {
    background: rgba(8, 13, 25, 0.72);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.24);
}

.title {
    font-size: 28px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 8px;
}

.subtitle {
    text-align: left;
    color: #cbd5e1;
    margin-bottom: 24px;
    line-height: 1.6;
}

        .form-group {
            margin-bottom: 16px;
        }

        label {
            display: block;
            margin-bottom: 6px;
            font-size: 14px;
            color: #e2e8f0;
        }

        input {
            width: 100%;
            padding: 12px 14px;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.15);
            background: rgba(255,255,255,0.08);
            color: white;
            outline: none;
        }

        input:focus {
            border-color: #38bdf8;
        }

.btn {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: none;
    font-weight: bold;
    cursor: pointer;
}


        .btn-login {
            background: linear-gradient(135deg, var(--accent), #ffb11b);
            color: #0f172a;
        }

        .btn-register {
            margin-top: 10px;
            background: rgba(255,255,255,0.08);
            color: white;
            border: 1px solid rgba(255,255,255,0.12);
        }

.status {
    margin-top: 16px;
    text-align: left;
    font-size: 14px;
    min-height: 20px;
}

.switch-link {
    margin-top: 18px;
    text-align: left;
    color: #cbd5e1;
    font-size: 14px;
}

        .switch-link a {
            color: #38bdf8;
            text-decoration: none;
            font-weight: 600;
        }

.back {
    margin-top: 16px;
    text-align: left;
}

        .back a {
            color: #94a3b8;
            text-decoration: none;
        }

        .footer {
            text-align: center;
            padding: 10px 0 26px;
            color: #94a3b8;
            font-size: 14px;
        }

@media (max-width: 860px) {
    .login-shell,
    .auth-signin,
    .auth-register {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .login-side {
        padding-right: 0;
        padding-top: 0;
    }

    .login-side h1 {
        max-width: none;
    }

    .title,
    .subtitle,
    .status,
    .switch-link,
    .back {
        text-align: center;
    }
}

