/* claude — Login page extras (/login). The page reuses the Referral Portal layout
   (.mk-referral / .mk-referral-form-pane / .mk-form-*) from marketing-referral-claude.css;
   this file only adds the few login-specific bits: error box, social buttons, the "or"
   divider, and the forgot-password link. Depends on marketing-core-claude.css tokens. */

/* Validation / auth error box */
.mk-login-alert {
  margin: 0 0 18px;
  padding: 12px 16px;
  border-radius: 10px;
  background: #fdecea;
  border: 1px solid #f5c2bd;
  color: #9b2c22;
  font-size: 13.5px;
  line-height: 1.45;
}
.mk-login-alert ul { margin: 0; padding-left: 18px; }

/* Social sign-in buttons */
.mk-login-social { display: flex; flex-direction: column; gap: 10px; margin-bottom: 6px; }
.mk-login-social-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 16px;
  border: 1px solid #d8e0de;
  border-radius: 10px;
  background: #fff;
  color: #1a1a1a;
  font-family: inherit;
  font-size: 14px; font-weight: 600; line-height: 1;
  text-decoration: none;
  transition: border-color .15s, background .15s;
}
.mk-login-social-btn:hover { border-color: #0e5454; background: #f7faf9; }
.mk-login-social-btn svg { width: 18px; height: 18px; flex: 0 0 auto; }

/* "or" divider */
.mk-login-or {
  display: flex; align-items: center; gap: 12px;
  margin: 22px 0;
  color: #8a8f8d; font-size: 12.5px; font-style: italic;
}
.mk-login-or::before, .mk-login-or::after {
  content: ''; flex: 1 1 auto; height: 1px; background: #e6ebe9;
}

/* Forgot-password link */
.mk-login-forgot { margin-top: 18px; font-size: 13.5px; }
.mk-login-forgot a { color: #0e5454; font-weight: 600; text-decoration: none; }
.mk-login-forgot a:hover { text-decoration: underline; }

/* Sub-link under the form (e.g. "Need an account?") */
.mk-login-alt { margin-top: 6px; font-size: 13.5px; color: #5a5a5a; }
.mk-login-alt a { color: #0e5454; font-weight: 600; text-decoration: none; }
.mk-login-alt a:hover { text-decoration: underline; }
