/* ============================================
   AUTH CSS - Login / Register
   ============================================ */

.auth-body {
  min-height: 100vh;
  background: var(--gray-50);
  display: flex;
  align-items: stretch;
}

.auth-container {
  display: flex;
  width: 100%;
  min-height: 100vh;
}

.auth-card {
  flex: 1;
  max-width: 480px;
  padding: 48px 40px;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-brand {
  flex: 1;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.auth-brand::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.25) 0%, transparent 70%);
  top: -100px; right: -100px;
}

.auth-brand::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,115,232,.2) 0%, transparent 70%);
  bottom: -80px; left: -80px;
}

.auth-brand-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 360px;
}

.auth-brand-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.auth-brand-content p {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
}

.feature-icon {
  font-size: 20px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.auth-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.auth-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.auth-subtitle {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 28px;
}

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

.auth-link {
  text-align: center;
  font-size: 14px;
  color: var(--gray-600);
  margin-top: 20px;
}

.auth-link a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}

.auth-link a:hover { text-decoration: underline; }

.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  background: white;
  color: var(--gray-900);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, border-color .15s;
  margin-bottom: 4px;
}
.btn-google:hover { background: var(--gray-50); border-color: var(--gray-300); }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--gray-400);
  font-size: 13px;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

@media (max-width: 768px) {
  .auth-brand { display: none; }
  .auth-card { max-width: 100%; padding: 32px 24px; }
}
