/* govbrtheme.css - Estilo institucional inspirado no gov.br */

.govbr-theme body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f5f5f5;
  color: #222;
  margin: 0;
  padding: 0;
}

.govbr-theme .container {
  max-width: 420px;
  margin: 40px auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 32px 24px 24px 24px;
}

.govbr-theme h1 {
  color: #155BCB;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.govbr-theme label {
  display: block;
  margin-top: 1.2em;
  margin-bottom: 0.3em;
  font-weight: 600;
  color: #155BCB;
}

.govbr-theme input[type="text"],
.govbr-theme input[type="password"],
.govbr-theme input[type="file"],
.govbr-theme select {
  width: 100%;
  padding: 0.6em;
  border: 1px solid #b3c6e0;
  border-radius: 4px;
  margin-bottom: 0.8em;
  font-size: 1em;
  background: #f8fafc;
}

.govbr-theme button {
  background: #155BCB;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.7em 1.5em;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1em;
  transition: background 0.2s;
}

button:hover {
  background: #003366;
}

input[type="checkbox"] {
  accent-color: #155BCB;
}

@media (max-width: 600px) {
  .container {
    max-width: 98vw;
    padding: 16px 4vw;
  }
  h1 {
    font-size: 1.3rem;
  }
}