@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&display=swap');

body{
    font-family: 'Montserrat', sans-serif;
    font-size: 20pt;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.wrapperBody{
    width: 100%;
    height: 100vh;
}
.video-slide{
    z-index: -1;
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: none;
    -webkit-filter: brightness(50%);
    filter: brightness(50%);
}

.video-slide.active{
    display: block;
}

.content{
    z-index:555;
    color: white;
    display: none;
    width: 40%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
}

.content p{
    background-color: rgba(0,0,0,0.4);
    padding: 20px;
    border-radius: 20px;
}

.content.active{
    display: flex;
}

.slider-navigation{
    z-index: 555;
    position: absolute;
    bottom: 40px;
    width: 100vw;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.slider-navigation .nav-btn{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px white solid;
}

.slider-navigation .nav-btn:hover{
    cursor: pointer;
    background: white;
}

.slider-navigation .nav-btn.active{
    background: white;
}

.wrapperFormulario{
    width: 100%;
    height: 100vh;
    z-index: 555;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.formulario{
    color: white;
    right: 100px;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.formulario form{
    background-color: rgba(0,0,0,0.4);
    padding: 20px;
    border-radius: 20px;
}

@media screen and (max-width: 1260px){
    .formulario{
        right: unset;
        justify-content: unset;
        top: 20px;
        width: 100%;
    }

    .formulario h1{
        font-size: 15pt;
    }

    .content{
        margin-top: 30px;
        width: 80%;
    }

    .content p{
        font-size: 10pt;
    }

    .content h1{
        font-size: 15pt;
    }
}

@media screen and (orientation: landscape) and (max-height: 800){
    .slider-navigation{
        display: none;
    }

    .content, .content p, .content h1{
        display: none;
    }
}