
/*normal*/
body {
    font-family: Arial, sans-serif;
    background-color: #000;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.modal {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    padding: 30px;
    width: 300px;
    text-align: center;
    position: relative;
}

.logo {
    margin-bottom: 30px;
}

.logo img {
    width: 100px;
    height: auto;
    border-radius: 50%;
}



input[type="text"] {
    width: calc(100% - 20px);
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 16px;
}

input[type="submit"] {
    width: calc(100% - 20px);
    background-color: #4caf50;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 6px 20px rgba(0, 0, 0, 0.2);
}


input[type="submit"]:hover {
    background-color: #45a049;
    box-shadow: 
        0 0 5px #0f0,    /* Reduzido de 10px para 5px */
        0 0 10px #0f0,   /* Reduzido de 20px para 10px */
        0 0 15px #0f0,   /* Reduzido de 30px para 15px */
        0 0 20px #39ff14, /* Reduzido de 40px para 20px */
        0 0 25px #39ff14, /* Reduzido de 50px para 25px */
        0 0 30px #39ff14, /* Reduzido de 60px para 30px */
        0 0 35px #39ff14; /* Reduzido de 70px para 35px */
}


/* Estilos do modal de erro */
.modal-error {
    display: none;
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    max-width: 80%;
    overflow: auto;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.modal-content {
    padding: 20px;
    border-radius: 10px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Estilos CSS para o footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    z-index: 999; /* Garante que o footer fique acima do conteúdo da página */
}

footer a {
    color: inherit; /* Herda a cor do texto do elemento pai */
    text-decoration: none; /* Remove o sublinhado padrão dos links */
}

.title h1 {
    text-align: center;
    color: #fff; /* Cor branca para contraste */
    margin-top: 20px;
    transition: text-shadow 0.3s ease-in-out; /* Suaviza a transição do brilho */
}

.title h1:hover {
    text-shadow: 0 0 10px #0f0, 0 0 20px #0f0, 0 0 30px #0f0, 0 0 40px #39ff14, 0 0 50px #39ff14, 0 0 60px #39ff14, 0 0 70px #39ff14;
}

.site-access {
    text-align: center;
    margin-top: 20px; /* Espaço acima do link para evitar sobreposição */
}


