/* Caminho: /public_html/assets/css/login.css */

.auth-body {
  min-height: 100vh;
  background: var(--bg);
}

.auth-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: 100vh;
}

/* LADO ESQUERDO (conteúdo) */
.auth-hero {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.brand-block h1 {
  font-size: 2.6rem;
  margin: 10px 0;
  color: var(--primary-strong);
}

.brand-block p {
  color: var(--text-soft);
  max-width: 600px;
}

/* BLOCO DA MARCA */
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.hero-logo {
  width: 168px;
  max-width: 100%;
  height: auto;
  display: block;
}

.brand-kicker {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.hero-tagline {
  margin: 0;
  max-width: 520px;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--primary-strong);
}

/* CARDS DE DESTAQUE */
.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* LADO DIREITO (login/cadastro) */
.auth-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-soft);
  padding: 20px;
}

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

.auth-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.auth-card-header h2 {
  margin: 0;
}

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

.auth-footer {
  margin-top: 20px;
  font-size: 0.8rem;
  text-align: center;
  color: var(--text-soft);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .auth-layout {
    grid-template-columns: 1fr;
  }

  .auth-hero {
    padding: 30px 20px;
  }

  .auth-panel {
    background: transparent;
  }

  .hero-brand {
    gap: 6px;
  }

  .hero-logo {
    width: 128px;
  }

  .hero-tagline {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .hero-logo {
    width: 112px;
  }

  .brand-kicker {
    font-size: 0.82rem;
    letter-spacing: 1.1px;
  }

  .hero-tagline {
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .brand-block h1 {
    font-size: 2rem;
  }

  .auth-card {
    padding: 22px;
  }

  .logo-wrap {
    width: 48px;
    height: 48px;
  }
}