:root{
    --main-color: #00A2C3;
    --main-tranparent-color: #00a3c381;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

h1{
    color: #494848;
    text-align: center;
    margin-top: 40px;
    font-size: 27px;
}
#banner{
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    width: 50vw;
    height: 100vh;
    position: relative;
    /* filter: blur(2px);} */
    /* -webkit-filter: blur(2px); */
}
#banner::after{
    content: 'PIPPOL ADMIN';
    text-align: center;
    line-height: 100vh;
    color: #fff;
    font-size: 35px;
    width: 100%;
    height: 100%;
    letter-spacing: 2px;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--main-tranparent-color);
    backdrop-filter: blur(3px);

}
#container{
    height: 100vh;
    justify-content: center;
    align-items: center;
    line-height: 100vh;
}
.logo{
    line-height: normal;
    margin: 30px auto 0px;
    text-align: center;

}
.logo img{
    width: 250px;
    height: auto;
    /* background-color: #E6E7E8; */
    /* border-radius: 50%; */
    /* position: relative; */
    /* margin: 40px auto; */
}
#usericon img{
    opacity: .5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.svg-icon{
    width: 23px;
    fill:#58595b;
}
.icon-lock{
    width: 21px;
}
#container{
    width: 50vw;
    height: 100vh;
    position: fixed;
    top: 50%;
    left: 100%;
    transform: translate(-100%,-50%);
    
}
form{
    margin: 5px auto;
}
.inputdiv{
    height: 50px;
    width: 50%;
    margin: 15px auto;
    position: relative;
    background-color: #ebebeb;
    border-radius: 10px;
    line-height: normal;

}
.divin{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 95%;
    transform: translate(-50%,-50%);
    line-height: normal;

}
.inputdiv input{
    width: 90%;
    height: 30px;
    border: none;
    background-color: #ebebeb;
    font-size: 17px;
}
.inputdiv input:focus{
    outline: none;
    border: none;
}
.inputdiv img{
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}
.pdiv{
    width: 50%;
    margin: 15px auto;
    text-align: center;
    line-height: normal;

}
.pdiv p{
    font-size: 14px;
    color: #b5b5b5;
}
.buttondiv input{
    font-size: 17px;
    background-color: var(--main-color);
    border: none;
    outline: none;
    padding: 8px 0px;
    width: 80%;
    color: #fff;
    border-radius: 20px;
    line-height: normal;

}
.buttondiv{
    margin: auto;
    width: 50%;
    text-align: center;
    line-height: normal;

}
#brake{
    background-color: rgba(0, 0, 0, 0.529);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}
#brake #contador{
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 6em;
}



/* 

    Responsive Desing

*/
@media screen and (max-width: 1155px){
    #container{
        width: 60%;
    }
}

@media screen and (max-width: 1000px){
    #container{
        width: 65%;
    }
   
    .inputdiv, .pdiv,.buttondiv{
        margin: 15px 40%;
    }
    #usericon{
        margin: 40px 55%;
    }
    h1{
        margin: 40px auto;
    }
}

@media screen and (max-width: 896px){
    #banner{
        background: #fff;
    }
    #container{
        width: 100%;
    }
    .inputdiv, .pdiv,.buttondiv{
        margin: 15px auto;
    }
    #usericon{
        margin: 40px auto;
    }
    
}

@media screen and (max-width: 600px){
    .inputdiv, .buttondiv, .pdiv{
        width: 70%;
    }
}
@media screen and (max-width: 420px){
    .inputdiv, .buttondiv, .pdiv{
        width: 90%;
    }
}
@media screen and (max-width: 320px){
    .inputdiv, .buttondiv, .pdiv{
        width: 95%;
    }
}
@media screen and (max-width: 310px){
    .inputdiv, .buttondiv, .pdiv{
        width: 100%;
    }
}