/* Corpo */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #F9FAFB;
  color: #10113C;
}

/* Inputs e selects */
input, select {
  text-indent: 10px;
  border-style: solid;
  border-width: 1px;
  border-color: #CED4DA;
  border-radius: 6px;
  padding: 12px;
  font-size: 16px;
  background-color: #FFFFFF;
  color: #10113C;
}

/* Campo de data */
input[type="date"] {
  text-indent: 8px;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  width: 25px;
  margin-right: 5px;
}

/* Checkbox */
input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 4px;
  accent-color: #FF5630;
}

/* Botão principal */
.botao {
  text-transform: uppercase;
  font-size: 18px;
  height: 60px;
  background-color: #FF5630;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.botao:hover {
  background-color: #e94e2c;
}

/* Asterisco obrigatório */
.astrisco {
  font-size: 14px;
  color: #FF5630;
}

/* Ícones ou áreas de destaque */
.icons {
  background-color: #E9ECEF;
  color: #10113C;
  padding: 10px;
  border-radius: 6px;
}

/* Títulos pequenos */
.titulos {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: bold;
  color: #144D7C;
}
