*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

.reg-form-resp{
display: none;
}

.web-contenedor{
    width: 100%;
    display: flex;
    background-color: purple;
    padding: 20px 0px 30px 0px;
}

.reg-web{
    width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.reg-web .icono{
    width: 35%;
}

.reg-web .titulo{
    font-family: 'DMSerif';
    color: white;
    font-size: 28px;
line-height: 1.1;
  text-align: center;
    margin-bottom: 10px;
  padding 0px 10px;
}

.reg-web .txt-wb{
    font-family: 'SharpSlab';
    color: orangered;
    font-size: 16px;
    text-align: center;
    margin-top: 25px;
}

.reg-web .img-wb{
    width: 80%;
}

.reg-form {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px; /* Optional: adds padding to ensure form content isn't flush with edges */
}

.reg-form .fr {
    width: 100%; /* Full width of .reg-form */
    background-color: #40bcac; /* Blue background */
    padding: 20px; /* Optional: adds internal spacing */
}

@font-face {
    font-family: 'DMSerif';
    src: url('https://6397695.fs1.hubspotusercontent-na1.net/hubfs/6397695/webfonts/DMSerifDisplay-Regular.woff');
}

@font-face {
    font-family: 'SharpSlab';
    src: url('https://6397695.fs1.hubspotusercontent-na1.net/hubfs/6397695/webfonts/SharpSlab-Bold.woff2');
}

@font-face {
    font-family: 'SharpSlabMedium';
    src: url('https://6397695.fs1.hubspotusercontent-na1.net/hubfs/webfonts/SharpSlab-Medium-bold.woff2');
    font-weight: bold;
}

@font-face {
    font-family: 'roboto';
    src: url('https://6397695.fs1.hubspotusercontent-na1.net/hubfs/6397695/webfonts/Rob27Regular.ttf');
}

/* Style for form labels */
.hs-form-field label {
    color: white !important;
    font-family: 'roboto', sans-serif;
}

/* Style for text inputs, email inputs, etc. */
.hs-form-field input[type="text"],
.hs-form-field input[type="email"],
.hs-form-field input[type="tel"],
.hs-form-field input[type="number"],
.hs-form-field textarea {
    background-color: white !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 10px !important;
    width: 100% !important;
    box-sizing: border-box;
}

/* Style for checkboxes */
.hs-form-field input[type="checkbox"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 20px !important;
    height: 20px !important;
    background-color: white !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer;
    position: relative;
}

/* Style for checked state of checkboxes */
.hs-form-field input[type="checkbox"]:checked::after {
    content: '\2713'; /* Checkmark character */
    color: black; /* Adjust color as needed */
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Ensure form container doesn't interfere */
.hs-form {
    width: 100%;
}

@media screen and (max-width: 800px){
.reg-form{
  display: none;}
  
  .reg-form-resp{
  display: block;
  }
  
  .reg-form-resp .fr {
    width: 100%; /* Full width of .reg-form */
    background-color: #40bcac; /* Blue background */
    padding: 20px; /* Optional: adds internal spacing */
}
  
  .reg-web{
  width: 100%;
  }
  
  .reg-web .titulo{
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
}
  
  .reg-web .icono{
    width: 45%;
}

}

@media screen and (max-width: 768px) {
  .web-contenedor {
    background-size: cover, 290% 100% !important; /* Menos zoom en móviles */
    background-position: center, center 10%; /* Más desplazamiento hacia abajo */
  }
}

