body {
    background-color: #042ca4;
    display: flex;
    color: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.form-container {
    background-color: #232323;
    padding: 80px;
    border-radius: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    margin: 50px;
    text-align: center;
    align-items: center;
    color: white;
}

.input-label {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    text-align: center;
    display: block;
}

/* Estilo para o Loading */
.loading {
    display: none;
    color: #fff;
    font-size: 18px;
    margin-top: 10px;
}

.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
    text-align: center;
}

.popup-content {
    background-color: #232323;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 300px;
    border-radius: 5px;
    text-align: center;
}

.popup-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.popup-close:hover,
.popup-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

select {
    padding: 10px;
    margin-bottom: 20px;
    width: 300px;
}

.hidden {
    display: none;
}

#botao-container button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    margin-top: 40px;
    cursor: pointer;
    width: 50%;
}

#botao-container button:hover {
    background-color: #0056b3;
}
