body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0;
}

.pre-nav-image {
    display: block;
    margin: 1px auto;
    max-width: 140px;
    height: auto;
}

form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px auto;
}

label {
    font-weight: bold;
    text-align: left; /* Alinha o texto à esquerda */
    display: block; /* Certifica que os labels ocupem a largura total */
}

input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: block;
}

button:hover {
    background-color: #218838;
}

footer {
    background-color: #000;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content img {
    width: 90px;
    margin-right: 10px;
}
