﻿:root {
    --brand-1: #6f9cff;
    --brand-2: #3a6cff;
    --bg-1: #0f172a; /* slate-900 */
    --glass: rgba(255,255,255,.06);
}
/* Page shell */
.auth-shell {
    min-height: calc(100vh - 56px);
    display: flex;
    align-items: stretch;
    justify-content: center;
    /*background: radial-gradient(60rem 60rem at 10% -10%, rgba(111,156,255,.15), transparent), radial-gradient(40rem 40rem at 110% 10%, rgba(58,108,255,.12), transparent), linear-gradient(180deg, #0b1020 0%, #0f172a 100%);*/
}
.auth-panel {
    width: 100%;
    max-width: 1200px;
    /*display: grid;
    grid-template-columns: 1fr;*/
}
/*@media(min-width:992px) {
    .auth-panel {
        grid-template-columns: .9fr 1.1fr;
    }
}*/

/* Left gradient brand pane */
/*.brand-pane {
    background: linear-gradient(145deg,var(--brand-1),var(--brand-2));
    border-radius: 1.25rem;
    margin: 2rem;
    box-shadow: 0 30px 70px rgba(0,0,0,.35);
    color: #fff;
    position: relative;
    overflow: hidden
}
.brand-pane::after {
    content: "";
    position: absolute;
    inset: -30% -30% auto auto;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle at center,rgba(255,255,255,.18),transparent 60%);
    filter: blur(40px)
}*/

/* Right form pane */
/*.form-pane {
    min-height: 100vh
}*/
.auth-card {
    background: rgba(255,255,255,.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 1.25rem;
    padding: 2rem;
    width: 100%;
    max-width: 520px;
    margin: 2rem
}
@media(min-width:576px) {
    .auth-card {
        padding: 2.25rem 2.5rem;
    }
}
/* Logo circle */
.logo-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg,#ffffff,rgba(255,255,255,.6));
    color: var(--brand-2);
    font-size: 1.6rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.7),0 12px 30px rgba(0,0,0,.12)
}
/* Form controls */
.form-control {
    border-radius: .85rem;
    border: 1px solid rgba(0,0,0,.08)
}
.form-control:focus {
    border-color: var(--brand-1);
    box-shadow: 0 0 0 .25rem rgba(111,156,255,.25)
}
.form-floating > label {
    color: #6b7280
}
/* Buttons */
/*.btn-primary {
    --bs-btn-bg: var(--brand-2);
    --bs-btn-border-color: var(--brand-2);
    --bs-btn-hover-bg: #274dff;
    --bs-btn-hover-border-color: #274dff;
    --bs-btn-focus-shadow-rgb: 58,108,255;
    border-radius: .85rem
}*/
/* Misc */
.eye-toggle {
    position: absolute;
    right: .5rem;
    top: .5rem
}
.alert {
    border-radius: .85rem
}
.small a {
    color: var(--brand-2)
}
/* Code input aesthetics (if you split digits later) */
.code-digit {
    width: 48px;
    height: 56px;
    text-align: center;
    font-size: 1.25rem;
    border-radius: .75rem;
    margin-right: .5rem
}
@media(max-width:380px) {
    .code-digit {
        width: 40px;
        height: 52px
    }
}
/* High-contrast / prefers-reduced-motion */
@media(prefers-reduced-motion:reduce) {
    * {
        transition: none !important;
        animation: none !important
    }
}
