body {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-image: url('../images/planodefundo.svg');
    background-size: cover;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
  }


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

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

}

.login_header img {
    width: 400px;
    margin-bottom: 1em;
}

.login_header h1 {
    color: #333;
    font-size: 1.5em;
}

.login_input {
    border: 2px solid #333;
    border-radius: 8px;
    color: #333;
    font-size: 1em;
    margin-bottom: 15px;
    max-width: 300px;
    width: 100%;
    outline: none;
    padding: 15px;
}

.login_button {
    background-color: #f1453a;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    max-width: 300px;
    width: 100%;
    padding: 15px;
}

.login_button:disabled {
    background-color: #eee;
    color: #aaa;
    cursor: auto;
}