:root{
    --main-color: #000000;
    --auxiliar-color: #d43751;
}
input::-ms-reveal,
input::-ms-clear {
    display: none;
}
/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

*{
    font-family: Arial,Helvetica,sans-serif;
    /*font-family: 'Roboto', sans-serif;*/
}

h1, img, p, button, a{
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
}

html{
    height: 100%;
}

body{
    margin: 0px;
    height: 100%;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    display: flex;
}

.login{
    min-width: 600px;
    max-width: 600px;
    width: 600px;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
}


.login img{
    width: 100%;
}

.login h1{
    font-size:50px;
    font-weight: 500;
    letter-spacing: 2px;
    text-align: center;
    color:rgb(37, 37, 37);
    margin-bottom: 40px;
    width: 100%;
}

.login-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
}
.login-container > button{
    background: var(--main-color);
    border:0px;
    padding:10px;
    color:white;
    font-size: 22px;
    font-weight: 500;
    border-radius: 5px;
    width: 250px;
    cursor: pointer;
    transition: 0.5s background;
    border:4px solid var(--main-color);
    box-sizing: border-box;
}

.login button:hover{
    background: white;
    color:var(--main-color);

}



.login-form{
    display: flex;
    flex-direction: column;
    width: 100%;
}


.login-form .input{
    width:100%;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border:2px solid rgb(195 195 195);
    color:rgb(95, 95, 95);
    overflow: hidden;
    border-radius: 5px;
    box-sizing: border-box;
}
.login-form .input .btnPassword{
    cursor: pointer;
    height: 100%;
    padding-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-form .input .btnPassword img{
    width:25px;
}
.login-form .input .btnPassword img:hover{
    color:var(--main-color);
}


.login-form .input input{
    width:100%;
    height: 100%;
    border:0px;
    padding-left: 20px;
    outline: none;
    font-size: 1em;
    color:rgb(95, 95, 95);

}


.login-form svg{
    height: 100%;
    width: 30px;
    padding: 0px 10px;
}

.login-form p{
    font-weight: 500;
    color: rgb(57 57 57);
    font-size: 18px;
}


.login-form button{
    background: var(--main-color);
    border:0px;
    padding:10px;
    color:white;
    font-size: 22px;
    font-weight: 500;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    transition: 0.5s background;
    border:4px solid var(--main-color);
    box-sizing: border-box;
    margin: 0px;
}
.login-form a{
    color:var(--main-color);
}

@media screen and (max-width:610px ) {
    .banner{
        display: none;
    }
    .login{
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        box-sizing: border-box;
    }
}