
/*LOGIN*/
.login{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 400px;
    height: 650px;
    background: #193aa534;
    border: 2px solid #fff;
    border-radius: 25px;
    
}

.login .logo_muni{
    margin: auto;
    display:block;
    margin-top: 30px;
    margin-bottom: 30px;
    width: 220px;
}

.login h1{
    text-align: center;
    color: #fff;
    padding: 0 0 20px 0;
    margin-top: 20px;
    border-bottom: 1px solid silver;
}

.login form{
    padding: 0 40px;
    box-sizing: border-box;
}

form .username{
    position:relative;
    border-bottom: 2px solid #adadad;
    margin: 30px 0;
}

.username input{
    width: 100%;
    padding: 0 5px;
    height: 40px;
    font-size: 16px;
    border: none;
    background: none;
    outline: none;
    color: #fff;
    text-align: center;
}

.username label{
    position: absolute;
    top: 50%;
    left: 30%;
    color: #adadad;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
    transition: .5s;
}

.username span::before{
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
}

.username input:focus ~ label,
.username input:focus ~ label{
    top: -5px;
    color: #2745a8;
}

.username input:focus ~ span::before,
.username input:focus ~ span::before{
    width: 100%;
    top: -5px;
}


.login button[type="submit"]{
    margin: auto; 
    display: block;
    width: 75%;
    height: 50px;
    border: 2px solid;
    background: #2745a8;
    border-radius: 25px;
    font-size: 18px;
    color: white;
    cursor: pointer;
    outline: none;
    margin-top: 5px;
}

.login button[type="submit"]:hover{
    border-color: #adadad;
    transition: .5s;
}
