body {
    background-image: url('../images/fundo do login.jpg');
    background-position: center;
    background-size: cover;
    position: relative;
    margin: 0;
    padding: 0;
}

.login-form {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    z-index: 1;
}

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

.login__header img {
    width: 100px;
}

.login__header h1 {
    color: #f7be06;
    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;
    width: 100%;
    padding: 15px;
}

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

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

.level-buttons {
    display: flex;
    gap: 10px;
}

.level-button {
    background-color: #ee665c;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
}

.level-button:hover {
    background-color: #dd554b;
}

.level-button.selected {
    background-color: #dd554b;
}
