:root{
  --red:#73070B;
  --red-dark:#73070B;
  --black:#090a0d;
  --panel:#101116;
  --off:#ececea;
  --paper:#fffdf9;
  --line:#c9c4bc;
  --muted:#77736e;
}
*{box-sizing:border-box;border-radius:0!important}
html,body{margin:0;background:var(--off);color:#111;font-family:Arial,Helvetica,sans-serif}
a{text-decoration:none;color:inherit}
button,input{font:inherit}

.site-header{
  background:#090a0d;
  color:#fff;
  border-top:6px solid #284bc2;
  border-bottom:3px solid var(--red);
}
.header-inner{
  width:min(1180px,92vw);
  margin:auto;
  min-height:70px;
  display:flex;
  align-items:center;
  gap:30px;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:24px;
  font-weight:900;
}
.logo-mark{
  width:42px;
  height:42px;
  background:var(--red);
  display:grid;
  place-items:center;
  font-size:14px;
}
.logo-text{color:#fff}
nav{
  display:flex;
  gap:20px;
  font-size:13px;
  flex-wrap:wrap;
}
nav a{color:#fff}
nav a:hover{color:#73070B}

/* OSBeats login banner — show the entire image */
.auth-hero{
  width:100%;
  height:auto;
  overflow:visible;
  background:#090a0d;
  border-bottom:3px solid var(--red);
  line-height:0;
}
.auth-hero img{
  display:block;
  width:100%;
  height:auto;
  max-width:none;
  object-fit:contain;
  object-position:center;
}

.eyebrow{
  color:#73070B;
  font-size:11px;
  font-weight:900;
  letter-spacing:1.7px;
}

.auth-wrap{
  width:min(1180px,92vw);
  margin:28px auto 70px;
}
.auth-intro{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:35px;
  align-items:end;
  margin-bottom:18px;
}
.auth-intro h2{
  margin:4px 0 0;
  font-size:28px;
}
.auth-intro p{
  margin:0;
  color:#68645f;
  line-height:1.55;
  font-size:13px;
}

.auth-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.auth-panel{
  background:#fff;
  border:1px solid var(--line);
}
.panel-head{
  background:#101116;
  color:#fff;
  border-left:5px solid var(--red);
  padding:18px 20px;
}
.panel-head h2{
  margin:5px 0 0;
  font-size:26px;
}
.auth-form{
  padding:22px;
  display:grid;
  gap:16px;
}
.auth-form>label{
  display:grid;
  gap:6px;
  font-size:11px;
  font-weight:700;
  color:#4f4b46;
}
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"],
.auth-form input:not([type]){
  width:100%;
  padding:13px;
  border:1px solid #bcb6ae;
  background:#fff;
  color:#111;
  outline:none;
}
.auth-form input:focus{
  border-color:var(--red);
  box-shadow:inset 4px 0 0 var(--red);
}
.auth-form input::placeholder{color:#9b968e}

.password-wrap{
  display:grid;
  grid-template-columns:1fr 74px;
}
.password-wrap input{border-right:0!important}
.show-password{
  background:#111319;
  color:#fff;
  border:1px solid #111319;
  cursor:pointer;
  font-size:11px;
  font-weight:800;
}
.show-password:hover{
  background:var(--red);
  border-color:var(--red);
}
.primary-btn{
  min-height:48px;
  border:1px solid var(--red);
  background:var(--red);
  color:#fff;
  font-weight:900;
  cursor:pointer;
  padding:12px 16px;
}
.primary-btn:hover{
  background:var(--red-dark);
  border-color:var(--red-dark);
}
.primary-btn:disabled{
  opacity:.65;
  cursor:not-allowed;
}
.role-picker{
  border:0;
  margin:0;
  padding:0;
  display:grid;
  gap:8px;
}
.role-picker legend{
  margin-bottom:7px;
  font-size:11px;
  font-weight:700;
  color:#4f4b46;
}
.role-card{
  border:1px solid #c8c2ba;
  padding:12px;
  display:grid;
  grid-template-columns:22px 1fr;
  gap:9px;
  align-items:start;
  cursor:pointer;
  background:#f8f6f2;
}
.role-card:has(input:checked){
  border-color:var(--red);
  box-shadow:inset 5px 0 0 var(--red);
  background:#fff;
}
.role-card input{
  margin-top:3px;
  accent-color:var(--red);
}
.role-card strong{
  display:block;
  font-size:13px;
}
.role-card small{
  display:block;
  margin-top:4px;
  color:#77736e;
  font-size:11px;
  line-height:1.45;
}
.terms{
  margin:0;
  color:#77736e;
  font-size:10px;
  line-height:1.45;
}
.form-message{
  min-height:18px;
  font-size:12px;
  font-weight:700;
}
.form-message.error{color:#73070B}
.form-message.success{color:#16823f}
.panel-footer{
  border-top:1px solid #ddd8d0;
  padding:13px 22px;
  color:#77736e;
  font-size:11px;
  background:#f7f4ef;
}

.account-benefits{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:22px;
}
.account-benefits article{
  background:#101116;
  color:#fff;
  border-top:4px solid var(--red);
  padding:18px;
  min-height:150px;
}
.account-benefits .number{
  color:#73070B;
  font-size:11px;
  font-weight:900;
  letter-spacing:1px;
}
.account-benefits strong{
  display:block;
  margin:10px 0 7px;
  font-size:18px;
}
.account-benefits p{
  margin:0;
  color:#b7bac2;
  font-size:12px;
  line-height:1.55;
}

.site-footer{
  background:#090a0d;
  color:#fff;
  border-top:3px solid var(--red);
}
.footer-inner{
  width:min(1180px,92vw);
  margin:auto;
  padding:25px 0;
  display:flex;
  justify-content:space-between;
  gap:20px;
  font-size:13px;
}
.footer-inner strong{display:block}
.footer-inner span{
  display:block;
  margin-top:2px;
  color:#969aa4;
}
.footer-links{
  display:flex;
  gap:15px;
  align-items:center;
}
.footer-links a:hover{color:#73070B}

@media(max-width:900px){
  nav{display:none}
  .auth-intro{grid-template-columns:1fr}
  .auth-grid{grid-template-columns:1fr}
  .account-benefits{grid-template-columns:1fr 1fr}
}
@media(max-width:620px){
  .account-benefits{grid-template-columns:1fr}
  .footer-inner{flex-direction:column}
}


/* =========================================================
   TRUE FULL LOGIN BANNER FIX
   Use the original selected banner image with ZERO cropping.
   ========================================================= */
.auth-hero{
  display:block !important;
  width:100% !important;
  height:auto !important;
  min-height:0 !important;
  max-height:none !important;
  overflow:visible !important;
  padding:0 !important;
  margin:0 !important;
  background:#090a0d !important;
  line-height:0 !important;
}

.auth-hero img{
  display:block !important;
  width:100% !important;
  height:auto !important;
  min-height:0 !important;
  max-height:none !important;
  object-fit:contain !important;
  object-position:center !important;
  margin:0 !important;
  padding:0 !important;
}
