body {
    font-family: Arial, sans-serif;
    background: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
  
.login-container {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 300px;
}
  
.login-container h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1B2A4E; /* Cor principal (azul profundo) */
}
  
.input-group {
    margin-bottom: 1rem;
}
  
.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1B2A4E; /* Cor principal para rótulos */
}
  
.input-group input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
  
button {
    width: 100%;
    padding: 0.7rem;
    border: none;
    background: #24C6A2; /* Cor secundária (verde-água) */
    color: white;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}
  
button:hover {
    background: #20B292; /* Versão ligeiramente escurecida da cor secundária */
}

/* Estilo opcional para links */
a {
    color: #24C6A2;
    text-decoration: none;
}
  
a:hover {
    text-decoration: underline;
}


