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

.login {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    max-height: 600px;
    height: 100%;
    width: 100%;
    max-width: 400px;

    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

#login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

#id_username, #id_password {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    
}

.botao-submit {
    margin-top: 25px;
    background-color: var(--cor-principal-2);
    color: white;
    font-weight: 900;
    border: none;
    padding: 2px 4px;
    border-radius: 24px;
    cursor: pointer;
    text-decoration: none;
    width: 100%;
    padding: 10px;
}