body {
    font-family: "Roboto", sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}
header{
    margin: 20px
}

h1, h2, h3, h4, h5 {
    text-align: center;
    color: #37474F;
}



form {
    max-width: 400px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #37474F;
}

input[type="file"],
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea {
    width: 95%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 16px;
}

input[type="submit"], button {
    background-color: #007BFF;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

input[type="submit"]:hover, button:hover {
    background-color: #0056b3;
}

@media screen and (max-width: 600px) {
    form {
        max-width: 90%;
    }
}

/* Estilos para escurecer a tela */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0; /* Inicialmente invisível */
    transition: opacity 0.3s ease; /* Transição de opacidade para uma animação suave */
}

/* Estilos para o ícone de carregamento */
#loading-icon {
    font-size: 48px;
    color: white;
    animation: spin 1s infinite linear; /* Adicionando a animação de rotação */
}

/* Definindo a animação de rotação */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}