/* =============================== */
/*          BUTTONS                */
/* =============================== */

/* Conteneur de bouton personnalisé */
.custom-button-container {
  text-align: center;
  margin-top: 20px;
}

/* Bouton personnalisé */
.custom-button {
  width: 100%;
  padding: 12px;
  background-color: #027b9a;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.custom-button:hover {
  background-color: #035d70;
}

/* Responsive - Buttons */
@media (max-width: 950px) {
  .custom-button {
    font-size: 1.05rem;
    padding: 14px;
  }

  .google-btn {
    height: 44px;
    width: auto;
  }
}
