/* ==========================================================================
   DZTFIX Auth Pages (Login / Register) — UI Fix Pack
   Keeps original Winter 2026 look without touching main styles.css
   ========================================================================== */

.auth-wrap{
  min-height: calc(100vh - 96px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 26px 0 60px;
}

.auth-card{
  width: min(520px, calc(100% - 40px));
}

.auth-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.auth-title{
  margin: 0;
  font-weight: 950;
  letter-spacing: .4px;
  font-size: 22px;
}

.auth-sub{
  margin-top: 6px;
  opacity: .78;
  font-weight: 700;
  font-size: 13px;
}

.auth-pill{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-weight: 950;
  letter-spacing: 1.4px;
  font-size: 12px;
  align-self:flex-start;
}

.auth-form{
  display:flex;
  flex-direction:column;
  gap: 12px;
}

.auth-field label{
  display:block;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .3px;
  opacity: .9;
  margin-bottom: 8px;
}

.auth-input{
  width: 100%;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: inherit;
  padding: 0 14px;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.18);
}

.auth-input:focus{
  border-color: rgba(6,182,212,0.40);
  box-shadow: 0 0 0 3px rgba(6,182,212,0.14), inset 0 0 0 1px rgba(0,0,0,0.18);
}

.auth-actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  justify-content:flex-start;
  margin-top: 4px;
}

.auth-msg{
  margin-top: 6px;
  opacity: .85;
  font-weight: 700;
  font-size: 13px;
}

.auth-help{
  margin-top: 12px;
  opacity: .78;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.6;
}

.auth-foot{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
  opacity: .85;
  font-weight: 800;
  font-size: 12px;
}

/* Light theme tweaks */
html[data-theme="light"] .auth-pill{
  background: rgba(255,255,255,0.55);
}
html[data-theme="light"] .auth-input{
  background: rgba(255,255,255,0.65);
  border-color: rgba(10,15,26,0.14);
}
