/* Google account linking inside the authenticated profile form. */

.mrph-google-link-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 100%;
  min-height: 52px;
  color: #17384b !important;
  background: #fff !important;
  border: 1px solid #d8e6ec !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 22px rgba(6, 32, 50, .055) !important;
  font-weight: 800 !important;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.mrph-google-link-button:hover {
  transform: translateY(-1px);
  border-color: #bfd7df !important;
  box-shadow: 0 13px 29px rgba(6, 32, 50, .09) !important;
}

.mrph-google-link-button:focus-visible {
  outline: none;
  border-color: rgba(40, 200, 223, .80) !important;
  box-shadow: 0 0 0 4px rgba(40, 200, 223, .12) !important;
}

.mrph-google-link-button:disabled {
  opacity: .7;
  cursor: wait;
  transform: none;
}

.mrph-google-link-button .mrph-google-auth-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.mrph-google-link-button .mrph-google-auth-label {
  direction: auto;
  unicode-bidi: isolate;
}

@media (prefers-reduced-motion: reduce) {
  .mrph-google-link-button {
    transition: none;
  }
}
