* {
  break-inside: avoid;
  page-break-inside: avoid;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #333;
}

form {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 8px;
}

h1 {
  text-align: center;
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

input, select, textarea {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input:invalid, select:invalid, textarea:invalid {
  border-color: red;
}

button {
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  background-color: #0078d4;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  display: block;
  width: 100%;
}

button:hover {
  background-color: #005ea2;
}

button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.logo-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  margin: 2rem auto 1rem;
  padding: 0 2rem;
}

.logo-left {
  max-height: 100px;
  object-fit: contain;
}

.logo-right {
  max-height: 60px;
  object-fit: contain;
}

.g-recaptcha {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

#camposDinamicos {
  margin-top: 1.5rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.checkbox-item input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  margin-top: 0;
}

.checkbox-item label {
  margin-top: 0;
  font-weight: normal;
}

.btn {
  padding: 10px 20px;
  background-color: #0078d4;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  display: inline-block; /* Importante */
  border: none;
}
