/* General form styles */
.hs-form {
  max-width: 100%;
  margin: 0 auto;
  background-color: var(--white); /* Background color similar to the form container */
  padding: 30px;
  border-radius: 10px;
 color: var( --formLabel);
}

/* Label styles */
.hs-form label {
  color: var( --formLabel);
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
  font-weight:600
}
.hs-error-msg{
color:#B53548 !important;
  list-style:none !important;
}
.submitted-message{
color: var(--white) !important
}

li {
  list-style-type: none;
}

/* Input and textarea styles */
.hs-input, 
.hs-form textarea, 
.hs-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #383E49;
  border-radius: 5px;
  background-color: transparent;
  color: #383E49;
  font-size: 14px;
 
}

/* Submit button styles */
.hs-form .hs-button {
  background-color: #c8e730;
  color: #0c2736;
  padding:  16px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight:700;
  transition:all 0.5s
  
}

/* Submit button hover effect */
.hs-form .hs-button:hover {
  background-color: #b3d61c;
}

/* Checkbox styles */
.hs-form .hs-form-checkbox input {
  margin-right: 10px;
}

.hs-form .hs-form-checkbox label {
  display: flex;
  align-items: center;
  font-size: 12px;
}

/* Adjust margins for different fieldsets */
.hs-form fieldset {
  border: none;
  padding: 0;
  margin: 0 0 20px;
}

/* Customizing the dropdown */
.hs-form select {
  appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="none" stroke="%23495057" stroke-width="2" d="M14 6l-6 6-6-6"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

/* Privacy policy link */
.hs-form a {
  color: #c8e730;
  text-decoration: none;
  font-size: 12px;
}

.hs-form a:hover {
  text-decoration: underline;
}

.fieldset{
max-width:100% !important
}

.fieldset.form-columns-1 .input{
   margin:0 !important;
  width:100%;
}

.fieldset.form-columns-1.hs-form-field{
max-width:100% !important
}


.hs-input{
width:100% !important
}

.form-columns-1,.form-columns-2, .form-columns-1.hs-form-field , .form-columns-2.hs-form-field{
max-width:100% !important
}

/*Icono Submit*/

.hs-button
  position: relative;
  padding-right: 30px; /* Espacio para el ícono */
  
}

.hs-button::after {
  content: "->"; /* Código del ícono (usando FontAwesome, por ejemplo) */
  font-family: "FontAwesome"; /* Asegúrate de tener FontAwesome o el ícono que estés utilizando */
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

/*Estilos del botón submit*/

.actions  .hs-button{
  text-transform: capitalize;
}


/*Estilos para la sección de agradecimiento en el formulario*/
.thank-you-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  padding: 20px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.thank-you-section i {
  color: #083b57;
  font-size: 40px;
  margin-right: 15px;
}

.thank-you-section p {
  font-size: 24px;
  margin: 0;
  color: #083b57;
}

.submitted-message {
    color: var(--colorfont) !important;
    text-align: center;
    padding: 20px;
    font-weight: 600;
}

.hs-form {
    box-shadow: 0px 10px 30px -3px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    border-radius: 10px;
}
/* Estilos para la seccion de acepto las politicas  */


.hs-form-booleancheckbox .hs-form-booleancheckbox-display{
   display:flex;
   flex-direction:row-reverse;
   margin:20px 0px;
}

.hs-form-booleancheckbox-display .hs-input{
      margin: 0;
    height: 20px;
  
}