body {
    font-family: monospace;
    font-size: 1em;
    color: #EEE;
    background-color: #363636;
    margin: 24px 12px;
}

h1 {
    font-size: 1.4em;
    text-align: center;
    font-weight: bold;
    margin: 10px 0;
}

h1 a {
    color: #EEE !important;
}

fieldset {
    font-weight: bold;
    margin: 10px 0;
    border-radius: 10px;
}

fieldset table {
    width: 100%;
}

fieldset table td {
    padding: 8px 0;
}

input {
    width: 70%;
    height: 32px;
    margin: 10px 0;
    padding: 10px 5px;
    border: 2px solid #A7A6A6;
    text-align: center;
    background-color: A7A6A6;
    font-size: large;
    border-radius: 10px;
}

#submit {
    width: 24%;
    height: 56px;
    margin: 10px 0;
    padding: 10px 5px;
    color:#A7A6A6;
}

a,
a:hover,
a:visited,
a:link,
a:active {
    text-decoration: none;
    color: #A7A6A6;
}

hr {
    border: 1px solid #A7A6A6
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30px;
    text-align: center;
    font-weight: bold;
    display: inline-block;
    border-top: 2px solid #A7A6A6;
    padding: 15px 0 0 0;
}

.footer a {
    border: 2px solid #A7A6A6; 
    border-radius: 15px;
    padding: 8px 16px;
}

.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px; /* Ajuste conforme necessário */
    background-color: #EEE;
    overflow: hidden;
    z-index: 1000; /* Garante que a barra fique acima de outros elementos */
    display: block;
}

.loading-bar::before {
    content: '';
    display: block;
    width: 0;
    height: 100%;
    background-color: #A7A6A6; /* Cor da barra de loading */
    animation: loading 10s infinite;
    margin: 0 auto;
}

@keyframes loading {
    0%, 100% {
        width: 0;
    }
    50% {
        width: 100%;
    }
}