body, html {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  color: #333;
}

.connect-wrapper {
  display: flex;
  align-items: center;   /* centrer verticalement */
  justify-content: center; /* centrer horizontalement */
  min-height: 100vh;      /* occuper toute la hauteur de la fenêtre */
  padding: 2rem;
}

.connect-dashboard {
  max-width: 600px;
  width: 100%;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center; /* centrer le texte */
}

.connect-logo {
  display: block;
  margin: 0 auto 2rem; /* centrer et espacer du bloc */
  max-width: 200px;     /* adapter selon le design */
  height: auto;
}

h1 {
  color: #4a148c; /* couleur Shop'Home */
}

.btn-primary {
  display: block;
  width: 100%;
  padding: 1rem;
  background-color: #4a148c;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 1rem;
}

.btn-primary:hover {
  background-color: #6a1b9a;
}

.linked-accounts ul {
  list-style: none;
  padding: 0;
}

.linked-accounts li {
  background: #e0e0e0;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
}