@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  padding: 2rem;
  color: #313131;
}

form {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.filters > div {
  margin-bottom: 1.5rem;
}

.title .placeholder {
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 18px;
  color: #004491;
  font-family: "PT Sans", sans-serif;
}

.selection {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.selection label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #eef2f7b5;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.selection label:hover {
  background: #dde6f0;
}

.selection input[type="checkbox"] {
  accent-color: #002d72;
}

.form-group {
  margin-top: 1.5rem;
}

input[type="email"] {
  width: 100%;
  max-width: 300px;
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid #ccc;
}

input[type="submit"] {
  margin-top: 1rem;
  background-color: #002d72;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
}

input[type="submit"]:disabled {
  background-color: #b0b7c3;
  cursor: not-allowed;
}

.layers-1,
.layers-3 {
    display: block;
}

.departments, 
.experience,
.location,
.function {
    display: none;
}