body {
  font-family: "poppins";
  background: url("../assets/fond.jpg") center/cover;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 100%; /* min-height de base */
}

.header {
  display: flex;
  height: 3rem;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  background-color: #262626;
  padding: 3px;
  position: relative;
}
#buton-accueil img {
  flex: 0;
  margin-left: 0.5em;
  text-align: left;
  height: 25px;
  width: 120px;
}

.container {
  max-width: 500px;
  width: 100%;
  min-height: 250px;
  padding: 20px;
  margin: 200px auto;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

h1 {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.form-label {
  font-weight: bold;
}

input {
  font-family: "poppins";
  width: 85%;
  padding: 10px;
  margin: 10px auto;
  border-radius: 5px;
  border: 1px solid #ccc;
  outline: none;
}

button {
  width: 90%;
  padding: 15px;
  margin: 10px auto;
  background-color: #6b5a48;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #8f7d69;
}

.success-message {
  background-color: #e7f3ff;
  color: #0056b3;
  border: 1px solid #b3d8ff;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  font-size: 14px;
}


@media screen and (max-width: 700px) {
  .container {
    width: 80%;
  }
}



@media screen and (max-width: 700px) {
  h1 {
    font-size: 1.2em;
    margin-bottom: 20px;
  }
}