@charset "UTF-8";
/* configurações padrão */
*{
    margin: 0px;
    padding: 0px;
}

html{
    /* width: 100vw; */
    height: 100vh;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;   
    /* width: 100vw;
    height: 100vh; */
    box-sizing: border-box;    
}

.flex{
    display: flex;
    justify-content: center;
    align-items: center;
}

h1, p, .div{
    text-align: center;
    
}

.div{
    color: orange;
    font-weight: bold;
     
}

.botao{
    margin-top: 5px;
    font-size: 14px;
    background-color: purple;
    color: orange;
    border: none;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;    
}

.reset{
    padding: 5px 10px;
    font-size: 18px;
    background-color: orange;
    color: purple;
    border: none;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;  
}

.reset:hover{
    color: orange;
    background-color: purple;
}

.botao:hover{
    color: purple;
    background-color: orange;
}

#user_login:focus, #user_senha:focus{
    background-color: purple;
    color: orange;
    font-weight: bold;
}

#foto{
    width: 256px;
    margin: auto;
}
