body {
  margin: 0;
  padding: 0;
  height: 100vh;
}
body .titre_login_register {
  text-align: center;
  font-family: "Reem Kufi", sans-serif;
  font-size: 1.0625rem;
  text-transform: uppercase;
  line-height: 1.875;
  letter-spacing: 0.125rem;
  margin: 5vh 0;
}
body .alert {
  padding: 0.2rem;
  color: red;
  font-family: "Reem Kufi", sans-serif;
  font-size: 0.8625rem;
}
body .container__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
}
body .container__form form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60%;
  background-color: #f5f5f5;
  padding: 20px;
}
body .container__form form .informations_connexion {
  text-align: center;
  font-family: "Reem Kufi", sans-serif;
  font-size: 1.225rem;
  line-height: 1.875;
  letter-spacing: 0.125rem;
  margin: 3vh 0;
}
body .container__form form .form-group {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}
body .container__form form .form-group label {
  font-family: "Reem Kufi" sans-serif;
  font-size: 0.8rem;
  top: 10%;
  left: 12%;
  position: absolute;
}
body .container__form form .form-group label.required:after {
  content: " *";
  color: red;
}
body .container__form form .form-group input {
  width: 80%;
  height: 9vh;
  padding: 10px;
  border: 1px solid #F5F5F5;
  border-radius: 5px;
}
body .container__form form button {
  width: 35%;
  font-family: "Reem Kufi" sans-serif;
  font-size: 1.0625rem;
  color: white;
  height: 9vh;
  background-color: #F9A49D;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2vh;
  border: 1px solid #F9A49D;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
}
body .container__form form button:hover {
  background-color: #f69087;
}
@media (max-width: 900px) {
  body .container__form form button {
    font-size: 0.9rem;
    width: 40%;
  }
}
@media (max-width: 900px) and (max-width: 500px) {
  body .container__form form button {
    font-size: 0.8rem;
    width: 40%;
  }
}/*# sourceMappingURL=registration.css.map */