.ms-auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
  color: #7a6e60;
  font-size: 12px;
}

.ms-auth-divider::before,
.ms-auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ddd7cf;
}

.ms-google-auth-button {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid #b9b5af;
  border-radius: 10px;
  background: #fff;
  color: #1f1f1f;
  font: 600 14px/1.2 "DM Sans", Arial, sans-serif;
  cursor: pointer;
  transition: background-color .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.ms-google-auth-button:hover {
  background: #f8f9fa;
  border-color: #8f8b86;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
}

.ms-google-auth-button:focus-visible {
  outline: 3px solid rgba(66, 133, 244, .28);
  outline-offset: 2px;
}

.ms-google-logo {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.ms-google-auth-error {
  margin-bottom: 14px;
  padding: 10px 12px;
  border: 1px solid #ef9a9a;
  border-radius: 8px;
  background: #ffebee;
  color: #9b1c1c;
  font-size: 12px;
  line-height: 1.45;
}

[data-theme="dark"] .ms-google-auth-button {
  border-color: #625d57;
  background: #fff;
  color: #1f1f1f;
}


.ms-auth-divider-actions { margin-top: 16px; }
.ms-login-account-actions { display: grid; gap: 10px; }
.ms-login-account-button { width: 100%; min-height: 42px; display: grid; grid-template-columns: 22px 1fr 18px; align-items: center; gap: 9px; padding: 9px 13px; border: 1px solid; border-radius: 10px; background: #fff; font: 600 13px/1.2 "DM Sans", Arial, sans-serif; text-align: left; cursor: pointer; transition: background-color .15s ease, box-shadow .15s ease, transform .15s ease; }
.ms-login-account-button > :last-child { justify-self: end; }
.ms-login-account-button:hover { transform: translateY(-1px); box-shadow: 0 2px 7px rgba(0, 0, 0, .08); }
.ms-login-patient-button { border-color: #2b9368; color: #174f3a; }
.ms-login-patient-button:hover { background: #f2fbf6; }
.ms-login-therapist-button { border-color: #9b6ee8; color: #6840a8; }
.ms-login-therapist-button:hover { background: #faf7ff; }
.ms-login-account-button:focus-visible { outline: 3px solid rgba(66, 133, 244, .24); outline-offset: 2px; }