body {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4; /* Couleur de fond légère */
}

.top-bar{
  width: 100%;
  display: flex; /* Active Flexbox */
  justify-content: center; /* Centre horizontalement */
  margin-left: 5px;
}

header {
 
  flex-grow: 1;
  background: linear-gradient(to right, #983C9D, #983C9D 60%, #D5774B); /* Dégradé violet à orange */
  color: white;
  text-align: center;
  padding: 10px 0;
  margin-left: 5px;
}


img{
  height: 100px;
  width: 150px;
  
}

form{
  margin-top: 50px;
    flex-grow: 1;
    display: flex;
    justify-content: center; /* Centre horizontalement */
    align-items: center; /* Centre verticalement */
    text-align: center; /* Si vous avez du texte, cela le centrera */
    padding: 20px; /* Ajoute un peu d'espace autour du contenu */
}

.login-container {
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 550px;
}
.login-container h2 {
  text-align: center;
  margin-bottom: 20px;
}
.form-control {
  margin-bottom: 10px;
}
.form-control input {
  width: 92%;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 15px;
}
.form-control input[type="submit"] {
  background: #5f27cd;
  color: white;
  border: none;
  cursor: pointer;
  width : 100%;
  
}
.form-control input[type="submit"]:hover {
  background: #4c209c;
}

