/* =========================
   VALIDATION DU FORMAT CHARGÉ
========================= */
body::after {
    content: "CSS Desktop";
    display: none;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 93vh;
  font-family: Arial, sans-serif;
  background-image: url("../../img/fd_conn.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.container {
  text-align: center;
  width: 350px;
  padding: 20px;
  background-color: #1d1d1d;
  border-radius: 30px;
  margin-bottom: 20px;
}

.container h1 {
  color: #42f5b3;
}

.container input[type="text"],
.container input[type="password"],
.container input[type="email"] {
  width: 100%;
  padding: 15px;
  margin-bottom: 10px;
  border: none;
  background-color: #282828;
  color: #ffffff;
  border-radius: 4px;
  box-sizing: border-box;
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
}

.container input::placeholder {
  color: #888888;
}

/* Boutons */
.container button {
  color: #0d0d0d;
  font-weight: bold;
  padding: 15px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  margin: 0 auto;
}

.container button[type="submit"] {
  background-color: #42f5b3;
}

.container button[type="missedpassword"] {
  background-color: #ff0000;
}
