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

.form9-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(16, 54, 122, 0.20);
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.form9-header {
  background: linear-gradient(90deg, #10367A 0%, #FE5716 100%);
  color: #000000;
  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;
}

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

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

.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: #000000;
  margin-bottom: 2px;
}

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

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

.form9-btn {
  width: 100%;
  background: linear-gradient(90deg, #10367A 0%, #FE5716 100%);
  color: #FFFFFF;
  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, #FE5716 0%, #10367A 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;
  }
}