/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

/* Estilo do corpo */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    color: #333;
}

/* Fundo animado */
#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    padding-bottom: 50px;
}

.logo_escali{
    max-width: 30%;
}

/* Imagem decorativa */
.imagem-decorativa {
    max-width: 100%;
    height: auto;
}

/* Contêiner centralizado */
.container {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 0 3px rgb(81, 161, 218);
    max-width: 400px;
    width: 100%;
    text-align: center;
    z-index: 1;
    margin: 20px;
}

/* Títulos */
h2, h1 {
    margin-bottom: 20px;
    color: #ffffff;
}

/* Inputs */
input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

/* Botões */
button {
    width: 100%;
    padding: 10px;
    background: #51a1da;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.voltar-button{
    background: #721c24;
}

button:hover {
    background: #0056b3;
}

p {
    padding-top: 15px;
    color: white;
}

/* Links */
a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Mensagens */
ul {
    list-style-type: none;
    margin-bottom: 10px;
}

li {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    color: #ff3850;
    background-color: #e6e642;
}

li.error {
    background-color: #f8d7da;
    color: #721c24;
}

li.success {
    background-color: #d4edda;
    color: #155724;
}

/* Responsividade */
@media (max-width: 600px) {
    body {
        flex-direction: column;
    }
    .container {
        padding: 15px;
        width: 90%;
    }
    .texto_principal {
        margin-bottom: 20px;
    }

    h1{
        width: 90%;
        text-align: center;
    }

    .logo_escali{
    max-width: 70%;
}


}
