/* Login / Forgot Password pages */

.auth-screen {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--color-bg);
}

.auth-panel {
  background: radial-gradient(circle at 20% 20%, #16324F 0%, var(--color-ink) 60%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.auth-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18,179,166,0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,179,166,0.14) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 30% 40%, black, transparent 70%);
}

.auth-panel-content { position: relative; z-index: 1; }

.auth-brand { display: flex; align-items: center; gap: 10px; }
.auth-brand .mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--color-signal), #1FD6C4);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--color-ink);
}
.auth-brand .name { font-weight: 700; font-size: 17px; }

.auth-headline {
  margin-top: 60px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  max-width: 420px;
}
.auth-subline {
  margin-top: 14px;
  color: rgba(255,255,255,0.65);
  max-width: 380px;
  font-size: 14px;
}

.auth-stats { position: relative; z-index: 1; display: flex; gap: 32px; }
.auth-stat .value { font-family: var(--font-mono); font-size: 22px; font-weight: 700; color: var(--color-signal); }
.auth-stat .label { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }

.auth-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.auth-form-card { width: 100%; max-width: 380px; }
.auth-form-card h1 { font-size: 22px; margin: 0 0 6px; }
.auth-form-card p.sub { color: var(--color-text-muted); margin: 0 0 28px; font-size: 13.5px; }

.auth-form-footer {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
}

.form-check { display: flex; align-items: center; gap: 8px; font-size: 13px; }

@media (max-width: 860px) {
  .auth-screen { grid-template-columns: 1fr; }
  .auth-panel { display: none; }
}
