.login-form{
    align-items: center;
    display: flex;
    flex-direction: column;
    height:  100vh;
    justify-content: center;
    background-image: url('./imagens/fundo-preto-background46.jpg');
    background-size: cover;
}

.login-header{
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
}

.login-header img{
    width: 150px; 
   
}

.login-header h1{
    color: #011003;
    font-size: 1.5em;
}

.login-input{
    border: 2px solid #333;
    border-radius: 8px;
    color: #333;
    font-size: 1em;
    margin-bottom: 15px;
    max-width: 300px;
    outline: none;
    padding: 15px;
    width: 100%;
}

.login-button{
    background-color: #eb3d30;
    border: 3px solid #011003;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-size: 1em;
    max-width: 300px;
    padding: 15px;
    width: 100%;
}

.login-button:disabled{
    background-color: #dbdada;
    border: 2px solid #969595;
    color: #aaa;
    cursor: auto;
}


