/* AUTH PAGE */
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 64px;
}

/* LEFT PANEL */
.auth-left {
  background: linear-gradient(135deg, rgba(249,115,22,0.08), rgba(139,92,246,0.05));
  border-right: 1px solid var(--border);
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.auth-blob {
  position: absolute;
  width: 400px; height: 400px;
  background: var(--brand);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
  bottom: -150px; right: -100px;
  pointer-events: none;
}
.auth-left-content {
  position: relative; z-index: 1;
  max-width: 400px;
}
.auth-left-content h1 {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.auth-left-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.auth-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.auth-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}
.auth-feat span { font-size: 16px; }

/* RIGHT PANEL */
.auth-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  background: var(--bg);
}
.auth-card {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* TABS */
.auth-tabs {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px;
}
.auth-tab {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.auth-tab.active {
  background: var(--brand);
  color: #fff;
}

/* FORMS */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.auth-form.hidden { display: none; }

.input-with-icon {
  position: relative;
}
.input-with-icon .form-input {
  padding-right: 48px;
}
.eye-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.eye-btn:hover { opacity: 1; }

/* DIVIDER */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-faint);
  font-size: 12px;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.auth-switch {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}
.auth-switch a { color: var(--brand); font-weight: 600; }
.auth-switch a:hover { text-decoration: underline; }

.auth-tos {
  font-size: 12px;
  color: var(--text-faint);
  text-align: center;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .auth-page { grid-template-columns: 1fr; }
  .auth-left { display: none; }
  .auth-right { padding: 30px 20px; }
}
