/* styles/login.css */

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background:
        linear-gradient(to bottom right, rgba(75, 121, 161, 0.95), rgba(40, 62, 81, 0.85)),
        url('https://globalsecurit.com/wp-content/uploads/2023/05/Design-sans-titre-1024x576.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background-color: #ffffffee;
    padding: 1rem 3rem 2rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    text-align: center;
    width: 350px;
    max-width: 90%;
}

.login-container h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.login-container input {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border-color: #a7abad;
    border-width: 1px;
    border-radius: 8px;
    background-color: #f2f2f2;
    font-size: 16px;
}

.login-container input:focus {
    outline: none;
    background-color: #e6e6e6;
}

.login-container button {
    width: 108%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: #4b79a1;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.login-container button:hover {
    background-color: #395877;
}

.error {
    background: #f8d7da;
    color: #842029;
    padding: 0.75rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

footer {
    /*background-color: #333;  /* Couleur de fond sombre pour le footer */
    color: white;            /* Texte en blanc */
    text-align: center;      /* Centrer le texte */
    padding: 10px 0;         /* Espacement autour du texte */
    position: fixed;         /* Fixe le footer en bas de la page */
    bottom: 0;               /* Place le footer tout en bas */
    width: 100%;             /* Prend toute la largeur de l'écran */
    font-size: 14px;         /* Taille de police modeste */
    z-index: 1000;           /* Assure que le footer reste au-dessus du contenu */
    opacity: 0.4;
  }
  
  footer p {
    margin: 0;  /* Retirer les marges par défaut du paragraphe */
  }
  
