* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #24578d, #4e7c99);
    padding: 20px;
    overflow: auto; 

}

.logo {
    margin-bottom: 20px;
}

#logo {
    width: 100px;
}

#logo_eusebio{
    width: 210px;
}

.logo img{
    margin-right: 20px;
}

#logo_grupo{
    width: 310px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 900px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.box {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    text-align: center;
}

.left {
    background: #f4f4f4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h2 {
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
    color: #555;
}

button, input[type="submit"] {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background:#24578d;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: bold;
}

button:hover, input[type="submit"]:hover {
    background: #1a3e64;
    color: white;
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 280px;
}

input {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.messages{
    background-color: #f3ecc4;
    border-radius: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    color: #836400;
  }

#esquecer_senha {
    background-color: transparent; /* Fundo transparente */
    border: none; /* Remover borda */
    font-size: 14px;
    color: #2575fc; /* Cor do texto azul */
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

#esquecer_senha a {
    text-decoration: none; /* Remover underline do link */
    color: black; /* Cor do link igual ao botão */
}

#esquecer_senha:hover {
    color: #1a63b9; /* Azul mais escuro no hover */
    transform: scale(1.05); /* Efeito sutil de aumento no hover */
}

#esquecer_senha:active {
    color: #0d4b91; /* Azul ainda mais escuro quando clicado */
}

