.error{
    color:#df4929;
}

.msj_error_contact.active_loader{
    background-image: url('../img/loader.gif');
    background-repeat: no-repeat;
    height: 24px;
    width: 24px;
    margin: 0 auto;
}

#left-column{
    width:100% !important;
}
 
 
.input-contact {
  border: 1px solid #000 !important;
  box-shadow: none !important;
  height: 50px !important;
}


#formulariocontacto {
  width: 80%;
  margin-left: 10%;
}

.subtitulo-contacto-politica{
    font-family: 'Lato';
    font-weight: 300;
    font-size: 14px !important;
}

#gender > option,
#country > option{
  font-size: 14px;
  font-weight: 300;
  font-family: "Lato";
}

.txt_successful{
  color: #30ac49;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 15px;
}


.txt_error{
  color: #ac3030;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 15px;
}

/* Layout principal del formulario */
.formulariocontacto_form {
  width: 100%;
}

.formulario-grid {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.col-izq,
.col-der {
  flex: 1;
}

.col-izq {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.col-der {
  flex: 1;
}



.form-control-label {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 14px;
}

.form-check-label {
  padding-left: 33px !important;
  margin-bottom: 0;
  cursor: pointer;
  font-family: 'Lato';
  font-weight: 300;
  font-size: 14px;
}

.form-check-input-contacto {
  margin-left: 0.75rem !important;
}

.form-control,
textarea.form-control,
select.form-control {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 0;
  box-shadow: none;
  font-family: 'Lato';
  font-weight: 300;
}

textarea.form-control {
  resize: none !important;
  height: 220px !important;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .mitad {
  flex: 1;
}

/* Checkbox */

.form-check-label a {
  color: #000;
  text-decoration: underline;
}

/* Botón enviar */
#btnenviar-contacto {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 35px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
  display: block;
  margin-left: auto !important;
  box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.1);
  margin-top: -36px !important;
  font-family: "Lato";
  font-weight: 600;
  font-size: 14px;
}

#btnenviar-contacto:hover {
  background: #333;
}

/* Responsivo */
@media (max-width: 768px) {
  .formulario-grid {
    flex-direction: column;
  }
  .col-der textarea.form-control {
    min-height: 200px;
  }
}