@charset "UTF-8";
/* Ferramentas globais */
:root {
  /* ==========================================================================
     BRAND COLORS (CORES EXTRAÍDAS DA LOGO)
     ========================================================================== */
  --od-primary: #EBB04D; /* O Dourado Solar da logo */
  --od-primary-hover: #D9943B; /* Tom mais profundo para interação */
  --od-primary-light: rgba(235, 176, 77, 0.15);
  --od-secondary: #6A8E7F; /* Verde Oceano Calmo (combina com o tema "Orla") */
  --od-secondary-hover: #567568;
  --od-secondary-light: rgba(106, 142, 127, 0.1);
  --od-dark: #2D2926; /* O Grafite das ondas e do texto da logo */
  /* ==========================================================================
     SURFACES & BACKGROUNDS (O BEGE DA LOGO)
     ========================================================================== */
  --od-bg-page: #FDF8F0; /* Fundo areia claríssimo (traz calor à interface) */
  --od-bg-sand: #F5E9D6; /* O bege exato do fundo da logo para seções */
  --od-bg-card: #ffffff;
  --od-bg-auth-card: rgba(253, 248, 240, 0.95);
  --od-bg-input: #ffffff;
  --od-border: #E8E2D9; /* Borda areia suave */
  /* ==========================================================================
     TEXT (GRAFITE PROFISSIONAL)
     ========================================================================== */
  --od-text: #2D2926; /* Texto principal no tom das ondas da logo */
  --od-muted: #8E8A86; /* Cinza amarronzado para subtextos */
  /* ==========================================================================
     KPI TILES (DASHBOARD HARMONIZADO)
     ========================================================================== */
  --od-kpi-primary: #EBB04D;
  --od-kpi-secondary: #6A8E7F;
  --od-kpi-sand: #F5E9D6; /* Fundo areia para KPI neutro */
  --od-kpi-card: #FFFFFF;
  /* ==========================================================================
     STATUS & FEEDBACK (TONS TERROSOS E NATURAIS)
     ========================================================================== */
  --od-success: #6A8E7F; /* Verde natural em vez de neon */
  --od-warning: #EBB04D;
  --od-danger: #C25E5E; /* Vermelho queimado (mais sofisticado) */
  --od-info: #6A8E7F;
  /* ==========================================================================
     RADIUS / SIZES (MANTIDOS CONFORME SEU PADRÃO)
     ========================================================================== */
  --od-radius-sm: 8px;
  --od-radius-lg: 12px;
  --od-radius-xl: 16px;
  --od-radius-pill: 999px;
  --od-input-h: 48px;
  /* ==========================================================================
     SHADOWS & FOCUS (SOMBRAS ORGÂNICAS)
     ========================================================================== */
  --od-shadow-card: 0 10px 30px rgba(45, 41, 38, 0.05); /* Sombra baseada no tom Dark */
  --od-shadow-btn: 0 8px 20px rgba(235, 176, 77, 0.3); /* Sombra baseada no tom Solar */
  --od-focus: rgba(235, 176, 77, 0.25);
}

html, body {
  height: 100%;
}

body {
  /* protótipo usa Poppins */
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--od-text);
}

/* opcional: remover sublinhado padrão e manter comportamento */
a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Layout da autenticação (contém tudo do login) */
/* ============================
   AUTH LAYOUT (TUDO AQUI)
   ============================ */
/* Wrapper da página */
.od-auth-wrap {
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

/* Fundo com imagem + blur leve */
.od-auth-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(4px);
  transform: scale(1.04);
  opacity: 1;
}

/* Overlay escuro suave (bg-black/20) */
.od-auth-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

/* Área central (logo + card + footer) */
.od-auth-center {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 384px; /* max-w-sm */
  display: flex;
  flex-direction: column;
  gap: 24px; /* gap-6 */
}

/* Brand (logo + título) */
.od-auth-brand {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.od-logo-dot {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.od-logo-dot span {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--od-primary);
  display: inline-block;
  position: relative;
}

/* Título Orla Digital (branco, forte) */
.od-auth-brand-title {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Card */
.od-auth-card {
  background: var(--od-bg-auth-card); /* #F5F5F7/90 */
  backdrop-filter: blur(6px);
  border-radius: var(--od-radius-xl);
  box-shadow: var(--od-shadow-card);
  padding: 24px;
}

@media (min-width: 576px) {
  .od-auth-card {
    padding: 32px;
  }
}
/* Título dentro do card */
.od-auth-card h1,
.od-auth-card-title {
  text-align: center;
  font-size: 24px; /* text-2xl */
  font-weight: 800;
  margin: 0 0 24px 0;
  color: var(--od-text);
}

/* Labels */
.od-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--od-text);
  margin-bottom: 8px;
}

/* Inputs */
.od-input {
  height: var(--od-input-h);
  border: 1px solid var(--od-border);
  border-radius: var(--od-radius-lg);
  background: #fff;
  padding: 12px 12px;
  font-size: 16px;
  color: var(--od-text);
}

.od-input::placeholder {
  color: #9ca3af;
}

/* foco “azul protótipo” */
.od-input:focus {
  border-color: var(--od-secondary);
  box-shadow: 0 0 0 0.25rem var(--od-focus);
}

/* Grupo de senha (input + botão colado) */
.od-pass-group {
  display: flex;
  width: 100%;
}

.od-pass-group .od-input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
}

.od-pass-toggle {
  height: var(--od-input-h);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--od-border);
  border-left: 0;
  padding: 0 14px;
  color: #6b7280;
  border-top-right-radius: var(--od-radius-lg);
  border-bottom-right-radius: var(--od-radius-lg);
}

.od-pass-toggle:hover {
  color: #374151;
}

/* Link */
.od-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--od-secondary);
}

.od-link:hover {
  color: #008f9c;
  text-decoration: none;
}

/* Botão */
.od-btn-primary {
  height: var(--od-input-h);
  border: 0;
  border-radius: var(--od-radius-lg);
  background: var(--od-primary);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.03);
  transition: background-color 0.15s ease;
}

.od-btn-primary:hover {
  background: var(--od-primary-hover);
}

.od-btn-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 122, 50, 0.25);
}

/* Footer do auth */
.od-footer-auth {
  text-align: center;
  color: #fff;
  font-weight: 500;
}

.od-footer-auth a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
}

/* wrapper do input com ícone */
.od-pass-wrap {
  position: relative;
}

/* quando tiver ícone no input, reserva espaço à direita */
.od-input--with-icon {
  padding-right: 52px !important;
}

/* botão do olho dentro do input */
.od-pass-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  color: #6b7280;
  cursor: pointer;
  border-radius: 12px;
}

/* hover sutil (opcional) */
.od-pass-toggle:hover {
  background: rgba(0, 0, 0, 0.04);
}

/*# sourceMappingURL=auth.css.map */
