@import url("general.css");
h1 {
  text-align: center;
}

form {
  background-color: #fff;
  color: #333;
  font-weight: bold;
  border: 3px solid #faa609;
  border-radius: 10px;
}

.container {
  margin: 0 auto;
  width: 50%;
}

.textInput:focus {
  outline: none;
}

.erreur {
  color: #ff0000;
}
.invalide {
  border: 2px solid #ff0000 !important;
  background-color: #ffc0cb !important;
}

.valide {
  border: 2px solid #00ff00 !important;
  background-color: #ffffff !important;
}

.label {
  color: #ff0000;
}

.labelOk {
  color: #00ff00;
}

input[type="text"],
input[type="password"],
input[type="submit"] {
  margin: 0 auto;
  width: 50%;
  height: 30px;
  border: 3px solid #333;
  border-radius: 5%;
}

input[type="submit"] {
  padding: 0;
  border-radius: 50px;
  background-color: pink;
  border: 0;
}

input[type="submit"]:hover {
  background-color: #333;
  color: #d5d5d5;
}

.input-container {
  text-align: center;
  margin: 1em;
}

.aide-surgissante {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: bold;
  background-color: black;
  color: white;
  padding: 3px;
  line-height: 24px;
  display: none;
}
.tooltip {
  --balloon-color: green;
  --balloon-font-size: 20px --;
  --balloon-move: 30px;
}
