body {
    font-family: Arial, sans-serif;
    background-color: #234581; /* Fundo azul */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    flex-direction: column;
}

.logo-container {
    position: absolute;
    top: 250px; /* Distância do topo */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

h2 {
    color: #333;
    margin-bottom: 20px;
}

.login-container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    width: 350px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 1;
}

label {
    font-size: 14px;
    text-align: left;
    display: block;
    margin: 10px 0 5px;
    color: #333;
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #234581;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #1a355d;
}

.footer {
    font-size: 12px;
    color: #ccc;
    margin-top: 20px;
}
