@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.wrap{
    width: 100vw;
    height: 100vh;
    position: relative;
}

.wrap > .bg-video{
    position: absolute;
    /* top: 0; */
    left: 0;
    right: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wrap > .bg-video > video {
    min-width: 100%;
    min-height: 100vh;
    position: absolute;
}

.container{
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
    padding: 1em;
    text-align: center;
    overflow: hidden;
}


.right{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 1px;
    width: 50%;
}

.left{
    width: 50%;
}

.title{
    color: rgb(32, 32, 32);
    font-size: 35px;
    margin-top: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.616);
    padding: 0px 5px;
    letter-spacing: -1px;
}

.title2{
    color: rgb(32, 32, 32);
    font-size: 55px;
    background-color: rgba(255, 255, 255, 0.486);
    margin-top: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    padding: 0px 5px;

}


.title3{
    color: rgb(32, 32, 32);
    font-size: 20px;
    background-color: rgba(255, 255, 255, 0.486);
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    padding: 0px 5px;
    text-align: center;
}

.obvio{
    color: rgb(236, 5, 44);
}

.grandioso{
    color: rgb(23, 182, 89)
}

.logo{
    width: 200px;
    align-self: center;
    display: none;
}


input{
    display: block;
    width: 100%;
    height: 45px;
    margin-bottom: 10px;
    background-color: rgb(255, 255, 255);
    padding: 0px 10px;
    font-family: "Poppins";
    border: 1px solid gray;
    color: white;
}

textarea{
    width: 100%;
    height: 150px;
    margin-bottom: 10px;
    background-color: rgb(255, 255, 255);
    padding: 10px 10px;
    font-family: "Poppins";
    color: white;
}

button{
    width: 100%;
    height: 45px;
    background-color: rgb(17, 221, 17);
    border: 0;
    border-bottom: 3px solid green;
    font-size: 18px;
    color: white;
    font-family: "Poppins";
    text-transform: uppercase;
    font-weight: bold;
    transition: 200ms;
    cursor: pointer;
}

button:hover{
    background-color: rgb(10, 170, 10);
}

/* textarea {
    width: 100%;
    height: 150px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 16px;
    resize: none;
  } */


.form-container{
    margin-top: 30px;
    background-color: rgba(253, 253, 253, 0.671);
    padding: 2em;
    width: 497px;
    align-self: center;
    justify-self: center;
}

@media (max-width: 600px){
    .left{
        display: none;
    }

    .right{
        width: 100%;
    }

    .right{
        padding: 10px;
    }

    .container{
        justify-content: flex-start;
        align-items: flex-start;
    }

    .form-container{
        width: 320px;
    }

    .title{
        font-size: 25px;
        margin-top: 0;
    }
    
    .title2{
        font-size: 30px;
        font-family: 'Poppins', sans-serif;
    }

    .bg-video > video{
        min-width: 100% !important;
        height: 100vh !important;
        position: absolute !important;
        display: none;
    }

    .bg-video{
        min-width: 100vw;
        min-height: 100vh;
    }

    .logo{
        display: initial;
        width: 100px;
        margin-bottom: 20px;
    }

    .input{
        border-radius: 0;
    }

    .textarea{
        border-radius: 0;
    }
}
