@import url("general.css");
body {
  background-color: #333;
  font-size: 20px;
}
h1 {
  color: black;
  text-align: center;
  font-family: "Dancing Script", cursive;
}

form {
  background-color: #fff;
  color: #333;
  font-weight: bold;
  border: 3px solid #faa609;
  border-radius: 10px;
}

.container {
  margin: 0 auto;
  width: 50%;
}

#login {
  background-color: #333;
  background: url(../images/user.png) 10px no-repeat;
  padding-left: 40px;
}

.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="telephone"],
input[type="email"] {
  width: 85%;
  height: 30px;
  border-radius: 25px;
  border: 0;
  background-color: pink;
}
input[type="text"]:hover,
input[type="telephone"]:hover,
input[type="email"]:hover {
  background-color: grey;
}

input[type="text"]:focus,
input[type="telephone"]:focus,
input[type="email"]:focus {
  outline: none;
}

select {
  width: 50%;
  height: 30px;
  border-radius: 25px;
  border: 0;
  background-color: #d5d5d5;
  text-align: center;
  margin: auto;
}

.input-container {
  text-align: center;
  margin: 1em;
}

.prenom {
  background: url(../images/user.png) 10px no-repeat;
  padding-left: 40px;
}

.nom {
  background: url(../images/user.png) 10px no-repeat;
  padding-left: 40px;
}
.telephone {
  background: url(../images/Tel\ .png) 10px no-repeat;
  padding-left: 40px;
}

.email {
  background: url(../images/email.png) 10px no-repeat;
  padding-left: 40px;
}

input[type="submit"] {
  padding: 12px;
  border-radius: 50px;
  background-color: green;
  border: 0;
}
input[type="submit"]:hover {
  background-color: #333;
  color: #d5d5d5;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.17) 0px 12px 13px,
    rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

@media screen and (max-width: 500px) {
  .container {
    width: 100%;
  }
}
