/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: none;
    color: #000000; /* Noir pour le texte par dÃƒÂ©faut */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Occupe toute la hauteur de la fenÃƒÂªtre */
}

/* Login container */
.login-container {
    width: 100%;
    max-width: 650px;
    padding: 20px;
    background: #FFFFFF; /* Blanc pour le fond de la carte */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #3452FF; /* Bleu pour la bordure */
}

.login-card {
    text-align: center;
}

/* Logo styles */
.logo-container {
    margin-bottom: 20px; /* Espace entre le logo et le titre */
}

.logo {
    max-width: 100%; /* S'adapte Ãƒ  la largeur de la carte */
    height: auto; /* Garde les proportions du logo */
    max-height: 80px; /* Limite la hauteur du logo */
}

h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #3452FF; /* Bleu pour le titre */
}

.error {
    color: #FFFFFF;
    background: #3452FF; /* Bleu pour le fond des erreurs */
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Form styles */
.login-form {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centre les champs horizontalement */
    gap: 15px; /* Espacement entre les champs */
}

.form-group {
    width: 100%; /* Les champs occupent toute la largeur */
    text-align: left;
}

.form-group {
    width: 100%; /* Les champs occupent toute la largeur */
    text-align: left;
}

label {
    font-size: 14px;
    color: #000000; /* Noir pour les labels */
    margin-bottom: 5px;
    display: block;
}

input {
    width: 100%; /* Champs de largeur maximale */
    padding: 10px;
    border: 1px solid #3452FF; /* Bleu pour les bordures */
    border-radius: 4px;
    font-size: 14px;
    color: #000000; /* Noir pour le texte des champs */
    transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus {
    border-color: #3452FF;
    box-shadow: 0 0 5px #3452FF;
    outline: none;
}

/* Button styles */
.login-button {
    background: #3452FF;
    color: #FFFFFF;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.login-button:hover {
    background: #253bbb;
}

.login-button:active {
    background: #1a2c8e;
}


.form-group.col-md-4 {
    display: flex;
    align-items: center;
}

.tdhead {
  min-width: 150px;
}

.inputpc {
  max-width: 160px;
}

.texttip {
  /* font-weight: bold; */
  color: #669;
}

