body {
  font-family: Verdana, sans-serif;
  font-size: 13px;
  margin: 0;
  padding: 0;
}

.botao {
  padding: 6px 0;
  font-size: 13px;
  width: 100px;  
  height: 30px;  
  background-color: #f68028;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  margin-top: 5px;
}

.botao:hover {
  background-color: darkorange;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

header {
  background: #fff;
  padding: 20px 0;
  display: flex;
  align-items: flex-start;
}

header img {
  height: 65px;
  width: auto;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input[type="text"] {
  width: 100%;
  padding: 8px;
  font-size: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 13px; 
  /*font-weight: bold;*/
}

.form-section {
  background: #fff;
  border: 1px solid #ccc;
  padding: 28px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  margin-top: 20px;
}

.message {
  color: red;
  font-size: 11px;
  background-color: #FAE8E8 !important;
  text-align: center;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px; /* controle interno */
  margin-top: 5px; /* menor espaçamento externo */
  min-height: 30px;
}

p {
  text-align: left;
  margin-bottom: 20px;
  font-size: 13px; /* Aumente o valor conforme desejar */
}

.texto_cinza {
  color: #424742;
  font-size: 13px;
  margin-bottom: 20px;
  text-align: left;
}

.texto_laranja {
  color: #f68028;
  font-size: 13px;
  margin-top: 5px; /* agora sim */
  margin-bottom: 20px;
  text-align: left;
}

.titulo {
  color: #f68028;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 20;
  padding-bottom: 5px;	
}

.titulo,
.texto_laranja {
  display: block;
  margin: 0;
  padding: 0;
}

.titulo {
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .container {
	padding: 10px;
  }

  .form-section {
	padding: 20px;
  }
}

/* Alinhamento à esquerda garantido para spans em grupo de formulário */
.form-group span {
  display: block;
  margin-top: 5px;
}

/* Para ajustar responsividade do botão em telas muito pequenas */
@media (max-width: 480px) {
  .form-group input[type="submit"] {
    width: 100%;
  }
}

/* Checkbox personalizado */
.checkbox-custom {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.4;
  color: #333;
  user-select: none;
}

/* Esconde o checkbox padrão */
.checkbox-custom input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Estilo visual do checkbox */
.checkbox-custom .checkmark {
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 2px solid #f68028;
  border-radius: 4px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 3px;
}

/* Marca de seleção */
.checkbox-custom input:checked ~ .checkmark:after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid #f68028;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Hover */
.checkbox-custom:hover .checkmark {
  background-color: #ffe9d6;
}

.checkbox-custom .checkbox-text {
  margin-left: 7px; /* aumenta o espaço entre checkbox e texto */
  display: inline-block;
  font-size: 13px;
  line-height: 1.6;
  color: #333;
}

.checkbox-custom.erro .checkmark {
  background-color: #ffe5e5;
  border-color: red;
}