body {
    font-family: system-ui;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-image: url('../imagens/background_login.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.container {
    height: 460px;
    width: 550px;
    padding: 20px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.logo {
    max-width: 400px;
    /* margin-bottom: 10px; */
    margin-bottom: -5px;
}

.erro {
    color: red;
    margin-top: 10px;
}

input[type="text"],
input[type="password"],
input[type="email"] {
    width: 60%;
    padding: 10px 20px;
    margin: 6px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
    text-align: center;
    font-size: larger;
}

.button {
    font-weight: bold;
    width: 40%;
    background-color: #17258d;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.button:hover {
    background-color: #fe6a13;
}

.checkbox-label {
    display: flex;
    align-items: center;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
}

.forgot-password {
    /* float: right; */
    margin-top: 10px;
}

.select_contract{
    margin-top: 8%;
}

#contrato{
    font-size: 20px;
    padding: 6px;
    margin: 10px;
    margin-bottom: 15%;
    min-width: 50%;
}

/* ========================== MOBILE ========================== */
@media (max-width: 768px) {

    .container {
        height: 460px;
        width: 300px;
    }

    .logo {
        max-width: 300px;
        /* margin-bottom: 30px !important; */
        margin-bottom: -5px;
    }

    input[type="text"],
    input[type="password"],
    input[type="email"] {
        width: 100%;
        margin: 15px 0;
    }
}