.formulaire9 {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  background-color: #FDF5E6;
}

.form9-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(60, 60, 120, 0.10);
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.form9-header {
  background: linear-gradient(90deg, #D8BFD8 0%, #E6E6FA 100%);
  color: #333333;
  text-align: center;
  padding: 32px 24px 16px 24px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.form9-header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.form9-sun {
  width: 40px;
  height: 40px;
}

.form9-title {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Montserrat', 'Arial', sans-serif;
  color: #333333;
}

.form9-desc {
  font-size: 1.1rem;
  color: #8A2BE2;
  margin-bottom: 8px;
}

.form9-content {
  padding: 32px 24px;
  background-color: #FDF5E6;
}

.form9-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form9-row {
  display: flex;
  gap: 24px;
  margin-bottom: 5px;
}

.form9-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 5px;
}

.form9-field label {
  font-weight: 500;
  color: #333333;
  margin-bottom: 2px;
}

.form9-field input,
.form9-field select,
.form9-field textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #E6E6FA;
  font-size: 1rem;
  background: #fff;
  color: #333333;
  transition: border-color 0.2s;
}

.form9-field input:focus,
.form9-field select:focus,
.form9-field textarea:focus {
  border-color: #8A2BE2;
  outline: none;
}

.form9-btn {
  width: 100%;
  background: linear-gradient(90deg, #D8BFD8 0%, #E6E6FA 100%);
  color: #333333;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px;
  border: none;
  border-radius: 12px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

.form9-btn:hover {
  background: linear-gradient(90deg, #8A2BE2 0%, #D8BFD8 100%);
}

.form9-calc {
  width: 22px;
  height: 22px;
}

@media (max-width: 700px) {
  .form9-card {
    max-width: 100%;
    border-radius: 12px;
  }

  .form9-header {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 24px 12px 12px 12px;
  }

  .form9-content {
    padding: 16px 8px;
  }

  .form9-row {
    flex-direction: column;
    gap: 12px;
  }
}