body {
  font-family: "Roboto", sans-serif;
  background: #f7f9fc;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 20px;
  color: #222;
}

.form-section {
  width: 100%;
  max-width: 700px;
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.form-candidature h2 {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 500;
  color: #004aad;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

input,
select {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.3s;
}

input:focus,
select:focus {
  outline: none;
  border-color: #004aad;
  box-shadow: 0 0 0 2px rgba(0,74,173,0.1);
}

/* Disposition lignes doubles */
.form-row {
  display: flex;
  gap: 16px;
}

.form-group {
  flex: 1;
}

/* Bouton */
button {
  width: 100%;
  padding: 14px;
  background-color: #004aad;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #003b8e;
}

/* Responsive */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}
