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

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Geist", system-ui, -apple-system, sans-serif;
  background: #f4f4f5;
  color: #0a1628;
}

.pagina {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.cartao {
  width: 100%;
  max-width: 400px;
  background: #ffffff;
  border-radius: 6px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(10, 22, 40, 0.06);
}

h1 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a1628;
}

.subtitulo {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #3f4a5a;
}

.botao-google {
  width: 100%;
  border: none;
  border-radius: 6px;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  background: #3493d3;
  cursor: pointer;
  transition: background 0.15s ease;
}

.botao-google:hover {
  background: #1a6fa0;
}

.botao-google:focus-visible {
  outline: 2px solid #0a1628;
  outline-offset: 2px;
}

.botao-secundario {
  width: 100%;
  border: 1px solid rgba(24, 24, 27, 0.10);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: #0a1628;
  background: #ffffff;
  cursor: pointer;
}

.botao-secundario:hover {
  background: #fafafa;
}

.botao-secundario:focus-visible {
  outline: 2px solid #3493d3;
  outline-offset: 2px;
}

.erro {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #e11d48;
}

.aviso-mfa {
  margin: 1.25rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #5c6778;
}
