
#main{
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    width: 100%;
    height: 100vh;
}

#form_login{
    background-color: white;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 8px 10px black;
}
h1{
    color:#051753;
    text-align: center;
    margin-bottom: 35px;
}
.area_login{
    display: flex;
    flex-direction: column;
    margin-inline: 15px;
}
label{
    font-weight: bold;
    font-size: 15pt;
    color: #051753;
    margin-top: 8px;
}
input{
    color: #051753;
    width: 25vw;
    font-size: 12pt;
    padding-block:6px;
}
input:focus{
    border-inline: none;
    border-top: none;
    border-bottom: 4px solid #051753;
    outline: none;
}
#msg-login_error{
    width: 100%;
    text-align: center;
    font-weight: bold;
    color: red;
    margin-top: 5px;
}
#btn_login{
    color: white;
    font-size: 15pt;
    background-color: #051753;
    margin-block: 15px;
    margin-inline: 15px;
    padding-block: 5px;
    border: 1px solid white;
}
#btn_login:hover{
    color: #051753;
    font-weight: bold;
    background-color: white;
    border: 1px solid #051753;
}
#versao{
    width: 100%;
    font-size: 10pt;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

@media (max-width: 800px) {
    .area_login{
        margin-inline: 18px;
    }
    label{
        font-weight: bold;
        font-size: 16pt;
        color: #051753;
        margin-top: 8px;
    }
    input{
        width: 70vw;
        font-size: 15pt;
    }
}