/* Estilos globais */

body {

    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #111, #111);
    color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

header {
    background-color: #333;
    color: white;
    padding: 15px;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-section {
    background: #222;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #bbb;
    text-align: left;
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #555;
    border-radius: 5px;
    background: #333;
    color: #fff;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

button:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

button:active {
    background-color: #3e8e41;
}

.logo {
    border-radius: 50%;
    border-style: solid;
    border-color: white;
}

footer {
    color: white;
    text-align: center;
    padding: 20px 0;
}

.link-atecseven {
    text-emphasis: none;
    text-decoration: none;
    font-size: 16px;
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: aqua;
    transition: color 0.3s, background-color 0.3s; /* Adicionar transição suave */
}

.link-atecseven:hover {
    color: white; /* Cor do texto ao passar o mouse */
    background-color: rgb(4, 4, 85); /* Fundo ao passar o mouse */
    border-radius: 5px; /* Bordas arredondadas para destacar ainda mais */
    font-size: 20px;
}

/* Responsividade */
@media (min-width: 600px) {
    .form-section {
        padding: 30px;
    }

    input, button {
        padding: 15px;
    }
}