* {
    margin: 0;
    padding: 0;
}

body, html, p{
    background-color:#ffffff;
    color:#000000;
    font-weight:normal;
    font-family:"Segoe UI" , "Segoe" , "SegoeUI-Regular-final", Tahoma, Helvetica, Arial, sans-serif;
    -ms-overflow-style:-ms-autohiding-scrollbar;
}

body{
    font-size:0.8em;
}

.main {
    display: flex;
    margin: auto;
    height: 90vh;
    width: 100%;
}

#username, #passcode {
    font-family:"Segoe UI" , "Segoe" , "SegoeUI-Regular-final", Tahoma, Helvetica, Arial, sans-serif;
}

#entrar{
    margin-top: 10%;
    margin-bottom: 10%;
    font-size:16px;  
}

#loginFailed{
    margin-top: 10%;
    margin-bottom: 10%;
    font-size:16px; 
    color: #c41010; 
    font-weight: bold;
}

#tokenWarning{
    color: #a71d1d; 
    font-weight: bold;
}

/* Painel central */
.panel {
    background-color: white;
    display: flex;
    flex-direction: column;
    unicode-bidi: isolate;
    margin: auto;
    /*width: 640px;*/
}

/* Logo no topo */
.logo {
    width: 173px;
    height: 64px;
    object-fit: contain;
    margin: auto;
    margin-bottom: 40px;
}

/*Logo RSA SecurID*/
.rsa {
    position: absolute;;
    margin-top: 10px;
    margin-bottom: 20px;
}

/*Informações*/
.info {
    margin-top: 20px;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* Caixa de login */
.loginBox {
    max-width: 250px;
} 

form input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #aaa;
    border-radius: 2px;
    font-size: 14px;
}

#botaoForm {
    border:none;
    background-color:#0067b8; 
    min-width:80px;
    width:auto;
    height:30px;
    padding:4px 20px 6px 20px;
    transition:background 0s;
    color:rgb(255, 255, 255);
    cursor:pointer;
    margin-top: 60px;
    margin-bottom: 20px;
    
    -ms-user-select:none;
    -moz-transition:background 0s;
    -webkit-transition:background 0s;
    -o-transition:background 0s;
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -khtml-user-select:none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select:none;
}

#botao2FA {
    border:none;
    background-color:#0068b8c2; 
    min-width:80px;
    width:auto;
    height:30px;
    padding:4px 20px 6px 20px;
    color:rgb(255, 255, 255);
    cursor:pointer;
}

form button:hover {
    background-color: #94c0df;
}