/* ===== AUTH PAGE ===== */
.auth-page {
  min-height: 100vh;
  background: var(--navy);
}

.auth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* ===== LEFT PANEL ===== */
.auth-left {
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 60px 80px;
}

.auth-form-container {
  width: 100%;
  max-width: 340px;
}

.auth-logo-text {
  display: block;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 10px;
  text-decoration: none;
}

.auth-welcome {
  font-size: 14px;
  color: var(--gray-light);
  margin-bottom: 28px;
}

/* ===== FORM ===== */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrap input {
  width: 100%;
  padding: 12px 42px 12px 40px;
  font-size: 13px;
  font-family: var(--font);
  background: #0e1e32;
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}

.input-wrap input::placeholder { color: var(--gray); }
.input-wrap input:focus { border-color: color-mix(in srgb, var(--gold) 50%, transparent); }

.input-icon-left {
  position: absolute;
  left: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  pointer-events: none;
}

.input-icon-right {
  position: absolute;
  right: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.input-icon-right:hover { color: var(--white); }

.auth-submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 12px;
  letter-spacing: 0.15em;
  margin-top: 4px;
}

/* ===== SWITCH & BACK ===== */
.auth-switch {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 20px;
}

.link-btn {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
}
.link-btn:hover { opacity: 0.75; }

.back-link {
  font-size: 13px;
  color: var(--gray);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.back-link:hover { color: var(--white); }

/* ===== RIGHT PANEL ===== */
.auth-right {
  background: #0b1929;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-right-content {
  text-align: center;
}

.auth-brand-title {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 12px;
}

.auth-brand-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}

.auth-brand-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .auth-layout { grid-template-columns: 1fr; }
  .auth-right { display: none; }
  .auth-left { padding: 48px 24px; justify-content: center; }
  .auth-form-container { max-width: 100%; }
}
