html,body{
    margin:0;
    background-color: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inetosa_auth_form{
    padding: 64px 32px 24px 32px;
    background-color: white;
    box-sizing: border-box;
    position:absolute;
    width: 320px;
    top:50px;
    border: 1px solid silver;
    border-radius: 12px;
}

.inetosa_auth_form .inetosa_auth_controls{
    width:100%; 
    margin-bottom:10px;
    height:25px;
}


input.inetosa_auth_controls[type="text"],
input.inetosa_auth_controls[type="password"]{
    background-color: white;
    border: none;
    border-bottom: 1px solid silver;
    border-radius: unset;
}

.inetosa_auth_controls:focus {
    background-color: none;
    outline: none; 
}

#frmAuth {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

#frmTitle {
    font-weight: 700;
    font-size: 32px;
    font-family: sans-serif;
}

#btAuth {
    background-color: #df2872;
    color: white;
    border: 1px solid silver;
    padding: 12px 8px;
    height: auto;
}