html {
    width: 100%;
}
body {
    font-family: 'Open Sans', sans-serif;
    height: 100vh;
    width: 100vw;
    background-color: #A54391;
    background-image: url(../img/fondooo2.png);
    background-repeat: no-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: 60%;
    padding: 0;
}
.right_side {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.logo_side {
    width: 50%;
}
.video_side {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.formulario {
    padding: 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(80% - 48px);
}
.sol_entrada {
    text-align: center;
    color: white;
    font-size: 1.8vw;
    padding: 20px 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    background-color: #B52023;
    border-radius: 30px;
    margin-bottom: 24px;
    width: 80%;
}
 label {
     font-size: 18px;
 }
.button-form {
    padding-top: 40px;
    width: 80%;
    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: #003F3F;
    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: 48%;
}
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;
}
.mobile {
    display: none;
}
.video {
    width: 44.4vw;
    height: 35.2vh;
}

@media only screen and (max-width: 767px) {
    .left_side {
        padding: 24px 0px;
        width: 100%;
    }
    .right_side {
        width: calc(100% - 40px);
        display: flex;
        flex-direction: column;
        height: auto;
    }
    .page_content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .formulario {
        margin-bottom: 50px;
        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(100% - 40px);
    }
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }
    .logo_side {
        width: 100%;
    }
    .video_side {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .video {
        width: 80vw;
        height: 80vw;
    }

    .sol_entrada {
        font-size: 18px;
        padding-bottom: 34px;
        font-family: 'Roboto', sans-serif;
        font-weight: 900;
        width: 100%;
    }
    .button-access {
        color: white;
        background-color: #003F3F;
        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;
    }
  }