/* Reset e fonte */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

*{
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    border: none;
    font-family: 'Press Start 2P', cursive;
}

/* Login */

.login_form{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: center;
}

.login_header{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 48px;
}

.login_header img{
    width: 150px;
    border-radius: 20px;
    padding: 0.5em;
}

.login_header h1{
    color: #333;
    font-size: 1.6em;
    padding: 0.3em;
}

.login_header h2{
    color: #333;
    font-size: 1em;
}

.login_input {
    border: 2.1px solid rgb(47, 47, 47);
    border-radius: 10px;
    color: rgb(47, 47, 47);
    font-size: 1em;
    margin-bottom: 14px;
    max-width: 300px;
    outline: none;
    padding: 14px;
    width: 100%;
}

.login_button{
   background-color: #ee665c;
    border-radius: 5px;
    color: white;
    padding: 14px;
    cursor: pointer;
    font-size:1em;
    width: 100%;
    max-width: 300px;
}

.login_button:disabled {
    background-color: rgb(238, 238, 238);
    color: rgb(170, 170, 170);
    cursor: auto;
  }