body { padding: 2em; }

.center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* Shared */
.loginBtn {
  box-sizing: border-box;
  position: relative;
  /* width: 13em;  - apply for fixed size */
  margin: 0.2em;
  padding: 0 15px 0 46px;
  border: none;
  text-align: left;
  line-height: 34px;
  white-space: nowrap;
  border-radius: 0.2em;
  font-size: 16px;
  color: #FFF;
}
.loginBtn:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 100%;
}
.loginBtn:focus {
  outline: none;
}
.loginBtn:active {
  box-shadow: inset 0 0 0 32px rgba(0,0,0,0.1);
}

.windows-login-btn {
  display: flex;
  align-items: center;
  gap: 12px; /* Espace entre l'icône et le texte */
  padding: 12px; /* Espace entre la bordure et l'intérieur du bouton */
  border: 1px solid #8C8C8C; /* Bordure d'1px et de couleur #8C8C8C */
  border-radius: 0; /* Bordure carrée sans arrondi */
  background-color: #fff; /* Fond blanc */
  color: #5E5E5E; /* Couleur du texte */
  font-size: 15px;
  font-family: "Segoe UI", sans-serif; /* Police Segoe UI */
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.windows-login-btn:hover {
  background-color: #f0f0f0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.windows-logo {
  width: 24px;
  height: 24px;
}