* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@keyframes movimiento {
    0% {
        transform: translateY(-1500px) translateX(-50%);
    }

    80% {
        transform: translateY(-40%) translateX(-50%);
    }

    100% {
        transform: translateY(-50%) translateX(-50%);    
    }
}


@keyframes fade{

    0%{
        opacity: 0;
    }

    100%{
        opacity: 100%;
    }
}

@keyframes blur {
    from{
        backdrop-filter: blur(1px);
    }

    to{
        backdrop-filter: blur(3px);
    }
    
} 



body {

    font-family: Verdana, Geneva, Tahoma, sans-serif;

}


#background-video {

    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    /* overflow: hidden; */

}


#Logo_login {
    
/* display: flex;
justify-content: center;  */


    width: 80px;
    height: 55px;
    /* margin: 8px 500px; */
    /* margin-left: 144px;
    margin-right: 50px; */
    /* margin-bottom: 10; */
    position: absolute;
    left: calc(40%);
    bottom: calc(105%);

}

#linea1 {
    position: absolute;
    transform: translateY(25%);
    color: white;
    width: 70px;
    height: 4px;
    margin-top: -3px;
    margin-left: 88px;
    background-color: white;
}

#linea2 {
    position: fixed;
    color: white;
    width: 70px;
    height: 4px;
    margin-top: -3px;
    margin-left: 216px;
    background-color: white;
}


.triangulo1, .triangulo2{
    width: 0px;
    height: 0px;
    border-style: solid;
    transform: rotate(0deg);
    position: absolute;
}


.triangulo1 {
     border-width: 9px 0 9px 15.6px;
    border-color: transparent transparent transparent #FFFFFF;
    transform: translateY(-49%);
    left: 76px;
}

.triangulo2 {
    border-width: 9px 15.6px 9px 0;
    border-color: transparent #FFFFFF transparent transparent;
    transform: translateY(-53%);
    left: 280px;
}

#logoicon {

    width: 18px;
    position: absolute;
    left: 23px;
    top: 160px;
    
}

#iconlock {

    width: 15px;
    position: absolute;
    left: 25px;
    top: 249px;
}


/* /////////////////////////////////////////////////////////////////// */

.minicontenedor {
    /* -------------------------------------------------------------------------------- */
    animation-name: fade;
    animation-duration:1s ;
    animation-delay:3300ms; 
    animation-fill-mode: backwards;
    animation-timing-function: ease-in;
    margin-top: -124px;
    margin-bottom: 32px;
    margin-left: -30px;
    width: 375px;
    height: 70px;
    /* background-color: rgb(161, 20, 20); */
    /* position: absolute;
    left: 0%;
    top: -13%; */
    /* backdrop-filter: blur(4px); */
}

.contenedor {
    /* ---------------------------------------------------------------------------- */
    animation-name: movimiento;
    animation-duration:3s ;
    width: 375px;
    height: 540px;
    background-color: rgba(172, 172, 172, 0.1);
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 70px 30px;
    backdrop-filter: blur(3px);
    border-top: 2px solid white;
    border-bottom: 2px solid white;

}

.theform{
    animation-name: fade;
    animation-duration:1s ;
    animation-timing-function: ease-in;
    animation-delay:3000ms;
    animation-fill-mode: backwards;
}

.contenedor h1 {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 30px;
    padding-top: 15px;
    font-size: 1.5em;
    color: white;
}


.contenedor label {
    font-weight: bold;
    display: block;
    margin-left: 10px;
}

::placeholder {
    color: white;
    text-align: center;
    opacity: 1;
}

::-ms-input-placeholder {
    color: white;
}

.contenedor input {
    width: 100%;
    margin-bottom: 20px;
    margin-left: 10px;

}

label {
    text-align: center;
    margin-bottom: 10px;
}

.iconeye {
    position: absolute;
    cursor: pointer;
    background-color: transparent;
    height: 40px;
    left: 330px;
    bottom:244px;
   

    /* padding-left: 10px;
    padding-bottom: 8px; */
}

.contenedor input[type="username"],.contenedor input[type="text"] {
    
    position: relative;
    right: 20px;
    border: none;
    outline: none;
    height: 40px;
    width: 330px;
    padding-left: 29px;
    padding-right: 24px;
    border-bottom: 1px solid white;
    background-color: transparent;
    font-size: .9em;
    font-weight: 1000;
    text-align: center;
    /* color: white; */
}

.contenedor input[type="password"] {

    position: relative;
    right: 20px;
    border: none;
    outline: none;
    height: 40px;
    width: 330px;
    padding-left: 29px;
    padding-right: 24px;
    border-bottom: 1px solid white;
    background-color: transparent;
    font-weight: 1000;
    text-align: center;
    /* color: white */
}

.contenedor input[type="button"] {
    border: 2px solid white;
    color: white;
    outline: none;
    height: 44px;
    font-size: 1.2em;
    background-color: transparent;
    border-radius: 15px;
    margin-top: 30px;
}

.contenedor input[type="button"]:hover {
    color: black;
    background-color: white;
    cursor: pointer;
}

#remember {
    position: relative;
    text-align: right;
    margin-right: 30px;
    top: 6px
}

.contenedor input[type="checkbox"] {
    position: relative;
    margin-left: 10px;
    width: 28px;
    height: 15px;
    border-radius: 20px;
    appearance: none;
    outline: none;
    /* transition: .6s; */
    border: 1px solid white;
    background-color: transparent;

    /* posision -------------------- */
    left: 284px;
    bottom: 9px;

}

.contenedor input:checked[type="checkbox"] {
    transition: 1.2s;
    background-color: white
}

.contenedor input[type="checkbox"]::before {
    content: '';
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 10px;
    top: 0px;
    left: 0%;
    background: white;
    transition: .6s;
    /* este es movimiento before  */
}

.contenedor input:checked[type="checkbox"]::before {
    left: 50%;
    background-color: black;
    transition: .5s;
}

.contenedor a {
    display: block;
    text-decoration: none;
    color: white;
    font-size: 0.8em;
    padding-bottom: 10px;
    text-align: center;
}

.contenedor #mensaje {

    border: none;
    outline: none;
    font-weight: lighter;
    background-color: transparent;
    text-align: center;
    margin-bottom: 25px;
    margin-top: 20px;
    /* color: white; */

}

.contenedor .blanco {
    color: white;
}

.contenedor .rojo {
    color: red;
}

.contenedor .verde {
    color: rgb(23, 255, 23);
}