* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

label,
input[type=submit] {
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.body-bk {
    background-image: url('/views/img/foto-teimporto.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

.body {
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;    
    margin: 0;
    background-position: center center;
    width: 100%;
}

.bk-bl {
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    background-position: center center;
    width: 100%;
}

.bk-bl-terms {    
    background-color: rgba(0, 0, 0, 0.8);
    display: block;
}

.content_form {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1024px;
    margin: auto;
}

.c_col {
    flex: 0 0 50%;
    padding: 0;
    margin: 0 10px;
}

img {
    max-width: 100%;
}

.c_col_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.c_col:first-child {
    align-items: flex-start;
    align-self: stretch;
}

.c_col:last-child {
    flex-grow: 1;
}

.formulario {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px 0;
    padding: 20px;
    box-shadow: #222 0 0 10px 5px;
    width: 100%;
}

.grupo,
label {
    display: block;
    width: 100%;
}

label,
input {
    margin-bottom: 5px;
}

input[type=text],
input[type=email] {
    border: solid 1px #CCC;
    border-radius: 3px;
    margin-bottom: 20px;
    padding: 10px;
    width: 100%;
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
}

.grupo_col {
    display: inline-block;
    margin: 0;
    width: 49.5%;
}

input[type=submit] {
    border: none;
    border-radius: 3px;
    background-color: #0075ff;
    color: #FFF;
    cursor: pointer;
    margin: 10px 0 0;
    font-size: 15px;
    padding: 10px;
}

input[type=submit]:hover {
    background-color: #ff0090;
}

.tratamiento {
    background-color: #FFF;
    display: block;
    font-size: 12px;
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
    padding: 10px;
    width: 100%;
}

ul {
    list-style: none;
}

.error {
    display: none;
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    color: red;
    margin-top: 5px;
    background-color: #ffe4e4;
    padding: 20px;
    border: dashed 1px #F00
}

.success {
    display: none;
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    color: #00743e;
    margin-top: 5px;
    background-color: #c6ffcd;
    padding: 20px;
    border: dashed 1px #00743e
}

.legal-docs {
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-style: normal;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    padding: 10px;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    z-index: 1000; /* Asegura que esté sobre otros elementos */
  }

  .legal-docs a {
    color:#FFF;
    text-decoration:none;
    font-size: 12px;
  }
  
  .legal-link {
    color: #fff;
    text-decoration: none;
  }
  
  .legal-link:hover {
    text-decoration: underline;
  }

.contenido_texto {
    display:block;
    max-width:90%;
    font-size: 12px;
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-style: normal;
    color:#FFF;
    width:100%;
    padding:0 20px;
    margin: 70px auto;
}
p {
    font-weight:lighter;
    margin-bottom:10px;
}

@media (max-width: 1024px) {
    .bk-bl {
        display: block;
    }
    .content_form {
        display:block;
        flex-direction: column;
        /* Cambia la dirección del flexbox a columna */
    }

    .c_col {
        flex: 1;
        /* La columna ocupa todo el espacio disponible */
        margin: 10px 0;
        /* Agrega un margen entre las columnas */
        padding: 0 20px;
    }

    .c_col img {
        margin: 30px auto 0;
    }
    .legal-docs {
        bottom: 0;
        left: 0;  
        margin:20px auto;      
        position:relative;
        transform: translateX(0);
    }

}

@media (max-width: 500px) {
    .grupo_col {
        display: block;
        margin: 0;
        width: 100%;
    }
}

.grecaptcha-badge {
    display:none;
}