/* Geral */


body {
    background: linear-gradient(135deg, #32a89d, #6c63ff);
    color: #fff;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container, .form-container {
    background: #ffffff10;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}


h2 {
    margin-bottom: 20px;
    text-align: center;
}

input, select, button {
    border-radius: 5px;
}

.btn-custom {
    background-color: #32a89d;
    border: none;
}

.btn-custom:hover {
    background-color: #28a08d;
}

.file-list {
    list-style: none;
    padding: 0;
}

.file-list li {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 5px;
    text-align: center;
}

@media (max-width: 768px) {
    .container, .form-container {
        width: 100%;
        padding: 20px;
    }
}

/* Cabeçalho */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #144b04; /* Cor do cabeçalho */
    color: #fff;
    padding: 10px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.header nav a {
    text-decoration: none;
    color: #fff;
    margin-right: 15px;
    font-weight: bold;
}

.header nav a:hover {
    text-decoration: underline;
}

/* Rodapé */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #144b04; /* Cor do rodapé */
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.2);
}

/* Ajustes para o conteúdo centralizado */
body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 80px 20px 60px; /* Espaço para o cabeçalho e rodapé */
}

.container, .form-container {
    margin-top: auto;
    margin-bottom: auto;
}


/* Logo no cabeçalho */
.header-logo {
    text-align: center;
    height: 70px; /* Ajuste a altura conforme necessário */
    margin-bottom: 60px;
    width: auto; /* Mantém a proporção da imagem */
    margin-right: 10px; /* Espaço entre a logo e o texto */
}

/* Links do cabeçalho */
.header nav a {
    text-decoration: none;
    color: #fff;
    margin-right: 15px;
    font-weight: bold;
}

.header nav a:hover {
    text-decoration: underline;
}
