/* ============================================
   AUTH PAGE STYLES
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body { font-family: 'Inter', sans-serif; background: #111318; min-height: 100vh; display: flex; align-items: center; justify-content: center; }

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

.auth-left {
  width: 420px; min-width: 420px;
  background: #111318;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 40px;
  position: relative; overflow: hidden;
}

.auth-left-glow-1 { position: absolute; bottom: -80px; left: -80px; width: 350px; height: 350px; border-radius: 50%; background: radial-gradient(circle, rgba(0,153,204,0.12) 0%, transparent 70%); pointer-events: none; }
.auth-left-glow-2 { position: absolute; top: -60px; right: -60px; width: 250px; height: 250px; border-radius: 50%; background: radial-gradient(circle, rgba(0,153,204,0.08) 0%, transparent 70%); pointer-events: none; }

.auth-brand { display: flex; align-items: center; gap: 14px; position: relative; }
.auth-brand-icon { width: 48px; height: 48px; background: #0099CC; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.auth-brand-icon svg { width: 28px; height: 28px; fill: white; }
.auth-brand-name { font-size: 22px; font-weight: 800; color: white; letter-spacing: -0.5px; }
.auth-brand-tagline { font-size: 11px; color: #0099CC; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; margin-top: 2px; }

.auth-left-content { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 40px 0; position: relative; }
.auth-headline { font-size: 32px; font-weight: 800; color: white; line-height: 1.2; margin-bottom: 16px; letter-spacing: -1px; }
.auth-headline span { color: #0099CC; }
.auth-desc { font-size: 13px; color: #8892a4; line-height: 1.8; margin-bottom: 32px; }
.auth-features { display: flex; flex-direction: column; gap: 12px; }
.auth-feature { display: flex; align-items: center; gap: 12px; font-size: 12px; color: #a0aab8; }
.auth-feature-dot { width: 6px; height: 6px; border-radius: 50%; background: #0099CC; flex-shrink: 0; }
.auth-footer { font-size: 11px; color: #4a5568; position: relative; }

.auth-right {
  flex: 1; background: #1a1d24;
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  border-left: 1px solid #2a2d35;
}

.auth-card { width: 100%; max-width: 380px; }

.auth-toggle { display: flex; background: #111318; border-radius: 8px; padding: 4px; margin-bottom: 28px; border: 1px solid #2a2d35; }
.auth-toggle-btn { flex: 1; padding: 8px; font-size: 12px; font-weight: 600; border: none; border-radius: 6px; cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.2s; }
.auth-toggle-btn.active { background: #0099CC; color: white; }
.auth-toggle-btn.inactive { background: transparent; color: #8892a4; }

.auth-title { font-size: 22px; font-weight: 700; color: white; margin-bottom: 6px; letter-spacing: -0.5px; }
.auth-subtitle { font-size: 12px; color: #8892a4; margin-bottom: 24px; line-height: 1.6; }

.auth-form-group { margin-bottom: 14px; }
.auth-label { font-size: 11px; font-weight: 600; color: #a0aab8; display: block; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.auth-input { width: 100%; padding: 11px 14px; font-size: 13px; background: #111318; border: 1px solid #2a2d35; border-radius: 8px; color: white; font-family: 'Inter', sans-serif; transition: border-color 0.2s; }
.auth-input:focus { outline: none; border-color: #0099CC; }
.auth-input::placeholder { color: #4a5568; }

.auth-forgot { text-align: right; margin-top: -8px; margin-bottom: 14px; }
.auth-forgot a { font-size: 11px; color: #0099CC; text-decoration: none; cursor: pointer; }
.auth-forgot a:hover { color: #33BBEE; }

.auth-btn { width: 100%; padding: 12px; font-size: 13px; font-weight: 700; background: #0099CC; color: white; border: none; border-radius: 8px; cursor: pointer; font-family: 'Inter', sans-serif; margin-bottom: 16px; transition: background 0.2s; }
.auth-btn:hover { background: #0088BB; }

.auth-divider { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.auth-divider-line { flex: 1; height: 1px; background: #2a2d35; }
.auth-divider-text { font-size: 11px; color: #4a5568; font-weight: 500; }

.google-btn { width: 100%; padding: 11px; font-size: 13px; font-weight: 600; background: transparent; color: #e2e8f0; border: 1px solid #2a2d35; border-radius: 8px; cursor: pointer; font-family: 'Inter', sans-serif; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.2s; }
.google-btn:hover { background: #22252d; border-color: #4a5568; }
.google-icon { width: 18px; height: 18px; }

.auth-view { display: none; }
.auth-view.active { display: block; }

.pending-card { background: #111318; border: 1px solid #0099CC; border-radius: 10px; padding: 28px; text-align: center; }
.pending-icon { width: 56px; height: 56px; background: rgba(0,153,204,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.pending-icon svg { width: 28px; height: 28px; stroke: #0099CC; fill: none; stroke-width: 2; }
.pending-title { font-size: 18px; font-weight: 700; color: white; margin-bottom: 8px; }
.pending-desc { font-size: 12px; color: #8892a4; line-height: 1.8; margin-bottom: 16px; }
.pending-steps { text-align: left; background: #1a1d24; border-radius: 8px; padding: 14px; margin-bottom: 20px; }
.pending-step { display: flex; align-items: flex-start; gap: 10px; font-size: 11px; color: #8892a4; margin-bottom: 8px; line-height: 1.5; }
.pending-step:last-child { margin-bottom: 0; }
.step-num { width: 18px; height: 18px; border-radius: 50%; background: #0099CC; color: white; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.back-btn { background: none; border: none; color: #0099CC; font-size: 12px; cursor: pointer; font-family: 'Inter', sans-serif; margin-bottom: 20px; display: flex; align-items: center; gap: 6px; padding: 0; }
.success-msg { background: rgba(0,153,204,0.1); border: 1px solid #0099CC; border-radius: 8px; padding: 14px; font-size: 12px; color: #0099CC; text-align: center; margin-top: 12px; display: none; }
.success-msg.show { display: block; }
.outline-btn { width: 100%; padding: 10px; font-size: 12px; font-weight: 600; background: transparent; color: #0099CC; border: 1px solid #0099CC; border-radius: 8px; cursor: pointer; font-family: 'Inter', sans-serif; }

@media (max-width: 768px) {
  .auth-left { display: none; }
  .auth-right { padding: 24px; }
}
