/* Auth Login Custom Styles */
:root{
  --brand:#b71c1c; /* soft red theme */
  --brand-dark:#7f1111;
  --bg:#f6f7fb;
}
body.auth-shell{background:var(--bg);} 
.auth-card{background:#fff; border-radius:18px; overflow:hidden; max-width:980px; width:100%;}
.brand-pane{background:linear-gradient(135deg,var(--brand),var(--brand-dark));}
.brand-logo{width:84px; height:84px; object-fit:cover; border-radius:16px; box-shadow:0 6px 16px rgba(0,0,0,.2);} 
.form-pane{background:#fff;}
.input-group-lg>.form-control{padding:.75rem 1rem;}
.input-group-text{background:#fff;}
.btn-primary{background:var(--brand); border-color:var(--brand);} 
.btn-primary:hover{background:var(--brand-dark); border-color:var(--brand-dark);} 
.hint code{background:#f1f3f7; padding:.15rem .35rem; border-radius:.25rem;}
@media (max-width: 991.98px){.auth-card{max-width:560px;}}
