.auth-page{
  padding:110px 0 120px;
}

.auth-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  align-items:stretch;
}

.auth-brand-panel{
  background:rgba(151,134,104,.10);
  border:1px solid rgba(151,134,104,.22);
  border-radius:34px;
  padding:42px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}

.auth-brand-panel::before{
  content:"";
  position:absolute;
  inset:-80px -120px auto auto;
  width:260px;
  height:260px;
  border-radius:999px;
  background:rgba(151,134,104,.18);
}

.auth-kicker{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(151,134,104,.25);
  color:var(--gold);
  font-size:12px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.auth-brand-panel h1{
  margin:18px 0 0;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-0.04em;
  color:var(--text);
}

.auth-brand-panel p{
  margin:16px 0 0;
  color:#4b5563;
  font-size:16px;
  line-height:1.9;
  max-width:520px;
}

.auth-points{
  margin-top:22px;
  display:grid;
  gap:10px;
}

.auth-point{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:#374151;
  line-height:1.7;
  font-size:14px;
}

.auth-check{
  width:20px;
  height:20px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(151,134,104,.35);
  color:var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:12px;
  flex:0 0 20px;
  margin-top:2px;
}

.auth-form-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:34px;
  box-shadow:var(--shadow);
  padding:42px;
}

.auth-form-card h2{
  margin:0;
  font-size:30px;
  letter-spacing:-0.03em;
  color:var(--text);
}

.auth-sub{
  margin:10px 0 0;
  color:var(--muted);
  line-height:1.8;
  font-size:15px;
}

.auth-form{
  margin-top:22px;
  display:grid;
  gap:16px;
}

.auth-field label{
  display:block;
  font-weight:800;
  font-size:13px;
  margin-bottom:8px;
  color:#374151;
}

.auth-field input{
  width:100%;
  height:52px;
  border-radius:14px;
  border:1px solid var(--line);
  padding:0 14px;
  font-size:15px;
  outline:none;
  transition:.15s ease;
  background:#fff;
  color:var(--text);
}

.auth-field input:focus{
  border-color:rgba(151,134,104,.55);
  box-shadow:0 0 0 4px rgba(151,134,104,.14);
}

.auth-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:2px;
}

.auth-small-link{
  font-size:13px;
  color:#4b5563;
  font-weight:700;
}

.auth-small-link:hover{
  color:var(--gold);
}

.auth-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:6px;
}

.auth-actions .btn{
  min-height:52px;
}

.auth-note{
  margin-top:18px;
  color:var(--muted);
  font-size:13px;
  line-height:1.7;
}

.auth-note-panel{
  margin-top:22px;
}

.auth-error-box{
  margin-top:16px;
  border:1px solid rgba(220,38,38,.20);
  background:rgba(220,38,38,.06);
  color:#991b1b;
  border-radius:16px;
  padding:12px 14px;
  font-weight:700;
  font-size:13px;
}

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

  .auth-page{
    padding:86px 0 100px;
  }

  .auth-brand-panel,
  .auth-form-card{
    padding:30px;
  }
}

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

  .auth-brand-panel h1{
    font-size:36px;
  }
}