* {
    margin: 0;
    padding: 0;
}

body {
    color: #272727;
    font-family: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
}

h1 {
    padding: 10px 28px 05px 28px;
    font-size: 20px;
    font-family: 'Montserrat';
    letter-spacing: -1px;
    line-height: 33px;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 10px;
}

.link {
    color: #ffffff;
    text-decoration: none;
}

.legales {
    text-align: center;
    font-size: 11px;
    font-weight: bold;
    margin-top: 30px;
    font-style: italic;
    padding: 0px 0;
    color: rgb(2, 2, 2);

}

.boton {
    min-width: 15em;
    background-color: #F9B52F;
    transition: all 1s ease;
}

.boton:hover {
    background: #ffffff;
    color: #F9B52F !important;
}


.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    text-align: center;
    background-image: url(img/FONDO.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: 100vh;
}

.formulario {
    background-color: #f9b52f;
    border-radius: 10px;
    max-width: 500px;
    margin-top: 5%;
    height: 85%;
}

.formulario header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 10%;
    margin-bottom: 10%;
}

.formulario header img {
    width: 50%;
}


.checkbox {
    display: flex;
    flex-direction: row;
    font-size: 16px;
    font-family: 'Montserrat';
    letter-spacing: 0px;
    line-height: 23px;
    color: #ffffff;
    font-weight: normal;
}

.tittle {
    display: flex;
}


input[type="checkbox"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    appearance: none;
    /* For iOS < 15 to remove gradient background */
    /* Not removed via appearance */
    margin: 0;
    appearance: none;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.25em;
    height: 1.25em;
    border: 0.15em solid currentColor;
    border-radius: 0.15em;
    place-content: center;
    display: grid;
    place-content: center;

}

input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
    background-color: #fff;
}

input[type="checkbox"]:checked::before {
    transform: scale(1);
}
@media screen and (max-width: 768px) {
    .container {
        display: flex;
        flex-direction: row;
        text-align: center;
        background-image: url(img/FONDO2.png);
        background-size: cover;
        padding: 10%;
        height: 100%;
    }
    

}
/* 
.formulario {
    background-color: #f9b52f;
    border-radius: 10px;
    max-width: 600px;
}
.formulario header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.formulario .checkbox {
    flex-direction: column;
    justify-content: left;
    align-items: left;
    margin: 10px 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}
 */
/* @media screen and (max-width: 768px) {
    .container {
        display: flex;
        flex-direction: row;
        text-align: center;
        background-image: url(img/FONDO2.png);
        background-size: cover;
        padding: 10%;
    }
    main {
        background-color: #f9b52f;
        max-width: 600px;
        display: block;
        margin: auto;
        margin-top: 0px;
        margin-bottom: 10px;
        padding-bottom: 0px 10px;
        border-radius: 10px;
        -webkit-box-shadow: 8px 7px 5px 0px rgba(51, 51, 56, 0.58);
        -moz-box-shadow: 8px 7px 5px 0px rgba(51, 51, 56, 0.58);
        box-shadow: 2px 0px 5px 0px rgba(51, 51, 56, 0.58);
        height: 100vh;
    }
    .form_container {
        max-width: 100%;
        display: block;
        padding-bottom: 10px;
    }
}

@media screen and (max-width: 1024px) {
    .container {
        display: flex;
        flex-direction: row;
        text-align: center;
        background-image: url(img/FONDO2.png);
        background-size: cover;
        padding: 10%;
        height: 90vh;
    }
    main {
        background-color: #f9b52f;
        max-width: 600px;
        display: block;
        margin: auto;
        margin-top: 0px;
        margin-bottom: 10px;
        padding-bottom: 0px 10px;
        border-radius: 10px;
        -webkit-box-shadow: 8px 7px 5px 0px rgba(51, 51, 56, 0.58);
        -moz-box-shadow: 8px 7px 5px 0px rgba(51, 51, 56, 0.58);
        box-shadow: 2px 0px 5px 0px rgba(51, 51, 56, 0.58);
    
    }
    .form_container {
        max-width: 100%;
        display: block;
        padding-bottom: 10px;
        height: auto;
    }
} */