/* ============================================================
   MeuCurrículo — Auth Layout
   assets/css/auth.css
   ============================================================ */

/* -------------------------------------------------------
   Auth wrapper
------------------------------------------------------- */
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Lado esquerdo — Banner */
.auth-banner {
  background: linear-gradient(145deg, #0f0f1a 0%, #1a1040 50%, #0d1b2a 100%);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.auth-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(99,102,241,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(139,92,246,0.1) 0%, transparent 60%);
}

.auth-banner-logo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.auth-banner-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 8px 24px rgba(99,102,241,0.4);
}

.auth-banner-logo span {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

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

.auth-banner-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.auth-banner-content h2 span {
  background: linear-gradient(135deg, #818cf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-banner-content p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 380px;
}

.auth-features {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.auth-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Orbes decorativos */
.auth-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
}

.auth-orb-1 {
  width: 300px;
  height: 300px;
  background: #6366f1;
  top: -100px;
  right: -100px;
}

.auth-orb-2 {
  width: 200px;
  height: 200px;
  background: #8b5cf6;
  bottom: 50px;
  left: -50px;
}

/* -------------------------------------------------------
   Lado direito — Formulário
------------------------------------------------------- */
.auth-form-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  background: #0f0f1a;
  overflow-y: auto;
}

.auth-form-wrap {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.auth-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.auth-subtitle {
  color: var(--text-muted);
  font-size: 0.925rem;
  margin-bottom: 32px;
}

.auth-footer-link {
  text-align: center;
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.auth-footer-link a {
  color: var(--primary-light);
  font-weight: 600;
}

.auth-footer-link a:hover { color: var(--primary); }

/* -------------------------------------------------------
   Responsivo
------------------------------------------------------- */
@media (max-width: 900px) {
  .auth-page { grid-template-columns: 1fr; }
  .auth-banner { display: none; }
  .auth-form-side { padding: 32px 24px; }
  .auth-form-wrap { max-width: 100%; }
}
