.input-form-item input.form-item__textfield {
  min-height: 1.3rem !important;
  }

.input-form-item label.form-item__label {
    text-align: center !important;
  }
 
 
/* Style pour le message webform avec fond sombre */
.webform-message {
  background-color: #114a84;
  border: 2px solid #3498db;
  border-radius: 8px;
  padding: 20px;
  margin: 15px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  grid-column: 1 / -1; /* prendre l espace des 2 colonnes */
}

.webform-message div[aria-label="status"] {
  color: #ecf0f1;
}

.webform-message h2 h3 h4 {
  color: #ffffff;
}

.webform-message .status__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.webform-message .status--status {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  padding: 10px 15px;
  background-color: #34495e;
  border-left: 4px solid #3498db;
  margin: 10px 0;
}

.webform-message .status--status span {
  color: #ecf0f1;
}

.webform-message .status--status em {
  font-style: italic;
  color: #f39c12;
  font-weight: bold;
}

.webform-message .status--status em span {
  color: #f39c12;
}

/* Animation pour rendre l'élément encore plus visible */
.webform-message {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body,.layout-container {
    background-color: #fff !important;
    color: #ffffff !important;
    font-family: "Poppins" !important
}

@media  {
    .display-grid.cols-2 {
        grid-template-columns: repeat(1,1fr);
    }
}