/* Garantir que a página ocupe pelo menos toda a altura da tela */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Ajuste para o conteúdo principal */
.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

/* Centralizar o conteúdo */
.content-centered {
    align-items: center;
    text-align: center;
}

/* Estilo do footer para garantir que ele fique no final da página */
footer.footer {
    width: 100%;
    background-color: #000000;
    color: white;
    padding: 10px 0px;
    text-align: center;
    box-shadow: 0px -2px 8px rgba(0, 0, 0, 0.1);
    font-size: 0.8rem;
}

.page-wrapper {
    width: 100%;
}

/* Estilo para inputs, botões, etc. (mantido) */
input[type="text"], input[type="email"], input[type="password"], input[type="date"], textarea, select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #fff;
    font-family: inherit;
}

button {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 80px;

}

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

/* Estilo adicional para o footer */
footer.footer .footer-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

footer.footer .footer-logo {
    margin-right: 20px;
}

footer.footer .footer-logo img {
    max-height: 40px;
}

footer.footer .footer-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

footer.footer .footer-text p {
    margin: 0;
}

footer.footer .footer-text a {
    color: white;
    text-decoration: none;
}

footer.footer .footer-text a:hover {
    text-decoration: underline;
}

