.content-container{
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background-color: white;
}

.login-card{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3em;
}

#video-login{
    position: fixed;
    object-fit: cover;
}
    .image-container{
        width: 100%;
        margin-bottom: 20px;
    }

    .image-container img{
        width: 80%;
    }

    .input-container{
        width: 100%;
        display: flex;
        flex-direction: column;    
        gap: 1em;
        justify-content: center;
    }

        .input-container label{
            color: #1fc0fe;
        }

        .input-container input{
            border: none;
        }

            .input-container input:not([type="submit"]) {
                border-radius: 0;
                width: 100%;
                height: 40px;
                border-bottom: 1px solid #1fc0fe;
                padding: 5px;
                background-color: transparent;
                color: #1fc0fe;
            }

            .input-container input:focus{
                outline: none;
                color: #1fc0fe;
            }


.boton-login {
    box-shadow: 2px 2px 5px #55555599;
    background-color: #0c8cc4;
    min-width: 50%;
    transition: all ease-out 0.2s;
    font-size: 1.1em;
    font-weight: 500;
    color: #fff;
}

    .boton-login:hover {
        background-color: #0a78a8;
        color: white;
        box-shadow: 2px 2px 5px #55555566;
    }

/* Autocompletado */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border-bottom: solid 1px rgb(199, 223, 255);
    -webkit-text-fill-color: #0c8cc4;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* Escritorio */
@media screen and (orientation: landscape){
    .login-card{
        top: 5vh;
        left: 40vw;
        width: 20vw;
        height: 70vh;
    }

    #video-login{
        width: 100%;
        bottom: 0;
        left: 0;
    }
}

/*Celular en landscape*/
@media screen and (orientation: landscape) and (max-width: 900px){
    .login-card{
        top: 15vh;
        gap: 0;
    }
    .login-card img{
        height: 100%;
        width: 50%;
    }
}

/*retrato*/
@media screen and (orientation: portrait){
    .login-card{
        left: 15vw;
        width: 70vw;
    }

    #video-login{
        width: 250vw;
        bottom: 15vh;
        left: -75vw;
    }
}

/*Celular pequeño en retratro*/
@media screen and (orientation: portrait) and (max-width: 400px){
    .boton-login{
        margin-top: 15%;
    }
}

/*tablets*/
@media screen and (orientation: landscape) and (min-width: 901px) and (max-width: 1400px){
    #video-login {
        width: 100%;
        bottom: 10vh;
        left: 0;
    }
}