/* Contenedor principal del mensaje */
.container-objetivo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #81227913;
  margin: 30px 0;
  height: 50px;
  padding: 18px;
  font-size: 16px;
  border-left: solid #712281 10px;
}

.campos-obligados {
  font-size: 15px;
  color: red !important;
  font-weight: bold;
}

/* Fila de 3 columnas */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

/* Columna individual */
.form-group {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
}

/* Campos de texto, select, date, tel */

.label-estudiantes-form {
  text-transform: none;
  color: #000;
}

input {
  margin: 0 !important;
}

input,
select {
  border-radius: 5px;
  padding: 5px 10px;
  background-color: #f3f3f3;
  border: #712281 solid 1px;
  text-transform: none !important;
}

/* Área de texto (si la usas más adelante) */
textarea {
  height: 80px;
  border-radius: 5px;
  resize: vertical;
  padding: 5px 10px;
  background-color: #f3f3f3;
  border: #712281 solid 1px;
}

.campo-obligatorio {
  font-weight: 600;
  font-size: 12px;
  color: red;
  margin-top: 4px;
}

/* Estilo del botón */
input[type="submit"] {
  background-color: #712281;
  color: #fff;
  width: 100%;
  font-size: 16px;
  border: none;
  padding: 15px !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

input[type="submit"]:hover {
  background-color: #5f1b61;
}

/* Indicador de campos obligatorios */

.container-mail_archivo a {
  text-decoration: none;
  color: #712281;
  font-weight: 600;
}

/* Responsive - Tablets */
@media (min-width: 481px) and (max-width: 768px) {
  .main-title-container {
    max-width: 70%;
  }

  .container-objetivo {
    height: 150px;
  }
}

/* Responsive - Laptops */
@media (min-width: 1024px) {
  .container_form {
    padding: 50px;
    max-width: 100%;
  }
}
