/* Login consolidado - Orçamentaria Express */
.login-page {
  min-height: 100vh;
  margin: 0;
  color: #0f172a;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255,255,255,.08), transparent 34%),
    linear-gradient(145deg, #020617 0%, #111827 58%, #1e293b 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.login-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

.login-card {
  width: min(100%, 460px);
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(2, 6, 23, .36);
  padding: 28px;
  box-sizing: border-box;
}

.login-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.login-logo {
  display: block;
  width: min(100%, 300px);
  max-height: 180px;
  object-fit: contain;
}

.login-title {
  margin: 0 0 22px;
  color: #0f172a;
  font-size: clamp(1.2rem, 2.6vw, 1.45rem);
  line-height: 1.25;
  font-weight: 800;
  text-align: center;
}

.login-alert {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: .95rem;
  line-height: 1.45;
  font-weight: 600;
}

.login-alert-error {
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid #fecaca;
}

.login-alert-success {
  color: #166534;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
}

.login-actions {
  margin: 0;
}

.login-google-button {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 18px;
  box-sizing: border-box;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  color: #0f172a;
  background: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.login-google-button:hover {
  border-color: #94a3b8;
  background: #f8fafc;
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, .12);
}

.login-google-button:active {
  transform: translateY(0);
}

.login-google-button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .3);
  outline-offset: 3px;
}

.login-google-button img {
  flex: 0 0 auto;
}

.login-footnote {
  margin: 18px 0 0;
  color: #475569;
  font-size: .92rem;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 640px) {
  .login-shell {
    align-items: center;
    padding: 18px;
  }

  .login-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .login-logo {
    width: min(100%, 250px);
    max-height: 150px;
  }
}
