* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  background: #f9f9f9;
}

.plus {
  width: 100%;
  float: left;
  display: flex;
  justify-content: center;
}

.container {
  width: 60%;
  float: left;
  margin: 30px auto;
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  color: #333333;
  margin-bottom: 10px;
}

p {
  text-align: center;
  color: #666666;
  margin-bottom: 20px;
}

.form-section {
  margin-bottom: 20px;
}

h2 {
  font-size: 18px;
  color: #1c79c5;
  margin-bottom: 10px;
}

.recensement-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

label {
  font-size: 14px;
  margin-bottom: 5px;
  color: #444444;
}

input, textarea, select, button {
  font-size: 14px;
  padding: 10px;
  border: 1px solid #1c79c5;
  border-radius: 4px;
  width: 100%;
}

textarea {
  resize: none;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox-group label {
  font-size: 14px;
  color: #444444;
}

input[type="checkbox"] {
  margin-right: 5px;
  color: #1c79c5;
}

button {
  background-color: #1c79c5;
  color: white;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
  width: 100%;
}

button:hover {
  background-color: #1c79c5;
}

/* Responsive styles */
@media (max-width: 768px) {
  .container {
      width: 80%;
      padding: 15px;
  }

  h1 {
      font-size: 22px;
  }

  h2 {
      font-size: 16px;
  }
}

@media (max-width: 560px) {
  .container {
      width: 95%;
      padding: 10px;
  }

  h1 {
      font-size: 20px;
  }

  h2 {
      font-size: 14px;
  }

  button {
      padding: 8px;
  }
}
