/* =============================== */
/*        SOCIAL ICONS             */
/* =============================== */

/* Bouton social */
.social-button {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Conteneur d'icônes sociales */
.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  transition: transform 0.2s ease;
}

.social-icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 5px;
}

.social-icons a:hover {
  transform: scale(1.1);
}

/* Label social */
.social-label {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #027b9a;
}

/* Responsive - Social Icons */
@media (max-width: 950px) {
  .form-group.social-button {
    margin-bottom: 15px;
  }

  .social-label {
    font-size: 0.9rem;
    margin-top: 6px;
  }
}
