html {
    width: 100%;
}
body {
    font-family: 'Open Sans', sans-serif;
    height: 100vh;
    width: 100vw;
    background-color: #000C0A;
    background-image:url(./../img/fondo-desktop.png) ;
    background-position: center;
    background-repeat: repeat;
    background-size: cover;

    margin: 0;
    padding: 0;
    background-attachment: fixed;
}
.page_content {
    height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: row;
}
.left_side {
    width: 80%;
    padding: 0;
    height: 100%;
}
.right_side {
    width: 20%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
}

.formulario {
    padding: 24px 24px;
    border-radius: 30px;
    background-color: rgb(255, 255, 255, 0);
    font-weight:600;
    box-shadow: 0px 0px 30px 4px rgba(0, 0, 0, 0.75);
    /* Add the blur effect */
    backdrop-filter: blur(10px);
    width: calc(32% - 48px);
    margin: auto;
    margin-top: 2vh;
}

.funciones {
    color: #fff;
    font-size: 1.2rem;
}

 label {
     font-size: 18px;
 }

.button-form {
    padding-top: 40px;
    width: 100%;
    text-align: center;
}

.button-form:hover {
    -webkit-transform:scale(0.9);
    transform:scale(0.9);
    transition: 0.3s;
    outline-color: rgba(49, 138, 172, 0);
    outline-offset: 80px;
    text-shadow: 1px 1px 6px #fff;
}

.button-access {
    color: white;
    background-color: #D8715C;
    font-size: 20px;
    font-weight: 800;
    padding: 10px 0px;
    border-radius: 15px;
    text-decoration: none;
    width: 100%;
    display: inline-block;
}
.form-group {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.form-input {
    width: 100%;
}
select {
    height: 32px;
    width: 100%;
    margin: 12px 0;
    border-radius: 8px;
    border: none;
    padding-left: 8px;
}
input {
    height: 32px;
    width: calc(100% - 8px);
    margin: 10px 0 24px;
    border-radius: 8px;
    border: none;
    padding: 0 0 0 8px;
    background-color: #e9e8ed;
}
.desktop {
    display: block;
    width: fit-content;
}
.mobile {
    display: none;
}

.titulo {
    display: block;
}

.titulo-mobile {
    display: none;
}

@media only screen and (min-height:700px) and (max-width: 1440px) {
    .left_side {
        width: 60%;
    }
    .right_side {
        width: 40%;
    }

    .titulo {
        width: 100%;
    }

    .formulario {
        width: calc(50% - 48px);
    }

    .desktop {
        height: 100%;
    }

}

@media only screen and (max-width: 767px) {
    .left_side {
        padding: 24px 0px;
        width: 100%;
    }
    .right_side {
        width: 100%;
        display: flex;
        flex-direction: column;
        height: auto;
    }
    .page_content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .formulario {
        margin-bottom: 10px;
        padding: 20px;
        border-radius: 30px;
        background-color: rgb(255, 255, 255, 0);
        font-weight:600;
        box-shadow: 0px 0px 30px 4px rgba(0, 0, 0, 0.75);
        /* Add the blur effect */
        backdrop-filter: blur(10px);
        width: calc(90% - 40px);
    }
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
        width: 100%;
    }

    .button-access {
        color: white;
        background-color: #D8715C;
        font-size: 20px;
        font-weight: 800;
        padding: 10px 0px;
        border-radius: 15px;
        text-decoration: none;
        width: 100%;
        display: inline-block;
    }
    .form-group {
        display: flex;
        width: 100%;
        flex-direction: row;
    }
    .form-input {
        width: 100%;
    }

    .button-form {
        padding-top: 40px;
        width: 100%;
        text-align: center;
    }

    .titulo {
        display: none;
    }
    
    .titulo-mobile {
        display: block;
        width: 100%;
    }
  }