

/* FORM CONTAINER */
.form-wrapper {
  background-color: #FAF4F1;
  border-radius: 20px;
  max-width: 900px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* HEADINGS */
.display-4 {
  color: #E37F90;
  font-weight: 800;
  font-size: 3rem;
  text-shadow: 1px 1px #fff;
  margin-bottom: 1.5rem;
}


/* LABELS & INPUTS */
.form-label {
  font-weight: 600;
  color: #000;
}

.form-control,
.form-control-file {
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 0.5rem 1rem;
}

.form-control:focus{
  border-color:#f5929b;
  box-shadow:0 0 0 .25rem rgba(253, 13, 125, 0.25);
}
.form-input {
border-bottom:4px solid #f5929b !important
}


/* BUTTON */
.btn-primary {
  background-color: #E37F90;
  border: none;
  color: #fff;
  font-weight: bold;
  padding: 0.75rem 2rem;
  border-radius: 10px;
}
.btn-primary:hover {
  background-color: #d9687b;
}

/* Responsive */
@media (max-width: 768px) {
  .display-4 { font-size: 2.2rem; text-align: center; }
  .form-wrapper { padding: 2rem 1rem; }
  .btn-primary { width: 100%; }
}

.loading-message {
  color: #d9687b; /* Couleur primaire Bootstrap */
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  background-color:#d9687b
}

.sending-msg {
  display: none;
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #555;
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}