/* Scoped right-panel additions for the auth pages.
   ONLY styles NEW elements added to the right panel (full-width Google button,
   password show/hide, alt link). Does NOT touch the existing theme:
   no overrides of .btn-primary, .form-control, colors, or fonts. Scoped to
   .login-right and loaded after login.css. */

/* Password show/hide — positioning only (no color/theme change) */
.login-right .pass-wrap { position: relative; }
.login-right .pass-wrap .form-control { padding-right: 44px; }
.login-right .pass-toggle {
  position: absolute;
  top: 12px;
  right: 10px;
  border: none;
  background: transparent;
  color: #8a8f98;
  cursor: pointer;
  padding: 4px;
  font-size: 14px;
  line-height: 1;
}
.login-right .pass-toggle:hover { color: #555; }

/* Full-width labeled Google button (neutral white button per Google guidelines;
   not a brand/theme color — replaces the icon-only social button) */
.login-right .gbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  border: 1px solid #dadce0;
  border-radius: 8px;
  background: #fff;
  color: #3c4043;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.login-right .gbtn:hover {
  border-color: #c6c9ce;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.login-right .gbtn svg { width: 18px; height: 18px; flex: none; }

/* Bottom alt link (Sign up / Sign in) — layout only; inherits theme link color */
.login-right .auth-altlink {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
}
.login-right .auth-altlink a {
  font-weight: 600;
  text-decoration: none;
}
