/* --- CONTAINER DO FORMULÁRIO --- */
.card-form {
  width: calc(100% + 15px);
  max-width: 500px;
  border-radius: 40px;
  margin: 0 auto;
  color: white;
}

/* --- CAMPOS --- */
.field {
  margin-bottom: 10px;
}


.field input {
  width: 100%;
  padding: 15px 15px;
  border: none;
  border-radius: 50px;
  background: white;
  font-size: 16px;
  outline: none;
  color: #333;
}

.field input::placeholder {
  color: #7d7d7d;
  opacity: 1;
}

/* --- RECAPTCHA CENTRALIZADO --- */
.recaptcha-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 5px;
  margin-bottom: 10px;
}

/* --- BOTÃO ENVIAR --- */
button[type="submit"] {
  width: 100%;
  background: #1DBA00;
  border: none;
  padding: 10px;
  border-radius: 50px;
  font-size: 20px;
  color: white;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 1px;
  transition: 0.25s;
  text-align: center;
}

button[type="submit"]:hover {
  background: #18A300;
}

/* --- TEXTO DE AVISO --- */
.aviso {
  text-align: center;
  font-size: 14px;
  opacity: 0.85;
  margin-top: 18px;
  color: #ffffff;
}

