/* AbhayPe auth — premium logo-themed split shell */
:root {
  --ap-purple: #6a5cff;
  --ap-purple-deep: #4f46e5;
  --ap-pink: #ff4ecd;
  --ap-ink: #1f1665;
  --ap-bg-1: #6a5cff;
  --ap-bg-2: #8b5cf6;
  --ap-bg-3: #ff4ecd;
  --ap-panel: rgba(255, 255, 255, 0.04);
  --ap-glow: rgba(255, 255, 255, 0.22);
  --ap-glow-pink: rgba(255, 255, 255, 0.12);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Poppins, system-ui, sans-serif;
}

.ap-auth {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  background:
    radial-gradient(920px 480px at 12% 8%, rgba(255, 255, 255, .22), transparent 55%),
    radial-gradient(780px 460px at 92% 92%, rgba(255, 255, 255, .14), transparent 52%),
    linear-gradient(115deg, #6a5cff 0%, #7c6bff 28%, #c44edb 68%, #ff4ecd 100%);
}
.ap-auth::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='72' height='72' viewBox='0 0 72 72' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1'%3E%3Ccircle cx='14' cy='14' r='5'/%3E%3Crect x='44' y='10' width='12' height='9' rx='2'/%3E%3Cpath d='M12 48h14M19 41v14'/%3E%3Cpath d='M46 46l8 5-8 5z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 84px 84px;
}

/* One premium shell (screenshot style) */
.ap-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(106, 92, 255, .42), rgba(255, 78, 205, .28));
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow:
    0 40px 80px rgba(31, 22, 101, .35),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  backdrop-filter: blur(18px);
}
.ap-shell .row { min-height: min(86vh, 720px); }

/* ===== LEFT banner ===== */
.ap-banner {
  position: relative;
  min-height: 100%;
  padding: 0;
  display: flex;
  align-items: stretch;
}
.ap-banner-frame {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: #1a1040;
  min-height: min(86vh, 720px);
}
.ap-slider { position: absolute; inset: 0; }
.ap-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.ap-slide.is-active {
  opacity: 1;
  z-index: 1;
  animation: apKen 8s ease-out forwards;
}
@keyframes apKen {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}
.ap-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(20, 10, 50, .55) 0%, rgba(20, 10, 50, .12) 48%, rgba(76, 29, 149, .35) 100%),
    linear-gradient(180deg, rgba(15, 8, 40, .25) 0%, transparent 40%, rgba(12, 6, 32, .92) 100%);
}
.ap-float-icons {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.ap-float {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.95), rgba(237,233,254,.88));
  color: var(--ap-purple-deep);
  font-size: 18px;
  box-shadow:
    0 0 0 6px rgba(255, 78, 205, .18),
    0 14px 28px rgba(15, 8, 40, .35);
  animation: apFloat 5.5s ease-in-out infinite;
}
.ap-float:nth-child(1) { top: 28%; right: 12%; animation-delay: 0s; }
.ap-float:nth-child(2) { top: 48%; right: 22%; animation-delay: .8s; color: #7c3aed; }
.ap-float:nth-child(3) { top: 38%; right: 6%; animation-delay: 1.4s; color: #db2777; }
@keyframes apFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.ap-banner-ui {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: min(86vh, 720px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 28px 22px;
}
.ap-banner-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ap-banner-top a {
  display: inline-flex;
  background: #fff;
  border-radius: 14px;
  padding: 9px 13px;
  box-shadow: 0 12px 28px rgba(106, 92, 255, .3);
  transition: transform .2s ease;
}
.ap-banner-top a:hover { transform: translateY(-2px); }
.ap-banner-top img {
  height: 44px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
}
.ap-banner-tag {
  text-align: right;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  color: #ddd6fe;
  text-transform: uppercase;
}
.ap-banner-tag strong {
  display: block;
  margin-top: 3px;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  background: linear-gradient(90deg, #c4b5fd, var(--ap-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ap-banner-copy { max-width: 480px; }
.ap-banner-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(15, 8, 40, .5);
  border: 1px solid rgba(196, 181, 253, .35);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #ede9fe;
}
.ap-banner-pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, .22);
}
.ap-banner-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.025em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}
.ap-banner-copy p {
  margin: 0;
  max-width: 38ch;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .9);
}
.ap-banner-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.ap-dots { display: flex; gap: 8px; }
.ap-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(196, 181, 253, .4);
  transition: width .25s ease, background .25s ease, box-shadow .25s ease;
}
.ap-dots button.is-on {
  width: 28px;
  background: linear-gradient(90deg, var(--ap-purple), var(--ap-pink));
  box-shadow: 0 0 12px rgba(255, 78, 205, .45);
}
.ap-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ap-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 8, 40, .48);
  border: 1px solid rgba(196, 181, 253, .28);
  font-size: 11.5px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  color: #ede9fe;
  transition: border-color .2s ease, transform .2s ease;
}
.ap-chip:hover {
  border-color: rgba(255, 78, 205, .45);
  transform: translateY(-1px);
}
.ap-chip i { color: #ff9de8; }

/* ===== RIGHT form ===== */
.ap-form-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 28px;
  background:
    linear-gradient(160deg, rgba(42, 28, 110, .88) 0%, rgba(78, 36, 140, .86) 48%, rgba(120, 30, 120, .84) 100%);
  border-left: 1px solid rgba(255, 255, 255, .14);
}
.ap-form-panel {
  width: 100%;
  max-width: 420px;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  backdrop-filter: none;
}
.ap-form-panel.ap-form-wide { max-width: 500px; }
.ap-form-logo {
  text-align: center;
  margin-bottom: 14px;
}
.ap-form-logo img {
  height: 46px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 8px 12px;
  box-shadow: 0 10px 24px rgba(106, 92, 255, .28);
}
.ap-form-panel h2 {
  margin: 0 0 6px;
  text-align: center;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
}
.ap-form-panel .ap-sub {
  text-align: center;
  color: #c4b5fd;
  font-size: 13px;
  margin-bottom: 22px;
  line-height: 1.4;
}
.ap-field { margin-bottom: 14px; }
.ap-field label {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #ddd6fe;
}
.ap-field label .req { color: #ff4ecd; }
.ap-input { position: relative; }
.ap-input > i.ap-ico {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #6a5cff;
  z-index: 2;
  font-size: 13px;
  pointer-events: none;
}
.ap-input .form-control,
.ap-input select.form-control {
  height: 50px;
  border: 0;
  border-radius: 12px;
  padding: 10px 14px 10px 42px;
  font-size: 13.5px;
  font-weight: 500;
  background: #fff !important;
  color: #1f1665 !important;
  box-shadow: 0 8px 20px rgba(31, 22, 101, .14);
  transition: box-shadow .15s ease, transform .15s ease;
}
.ap-input .form-control:hover {
  box-shadow: 0 10px 24px rgba(106, 92, 255, .18);
}
.ap-input .form-control:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(106, 92, 255, .32), 0 10px 24px rgba(106, 92, 255, .18);
}
.ap-input .form-control.is-invalid {
  box-shadow: 0 0 0 3px rgba(255, 78, 205, .3), 0 8px 20px rgba(31, 22, 101, .14);
}
.ap-input .form-control.is-valid {
  box-shadow: 0 0 0 3px rgba(22, 163, 74, .25), 0 8px 20px rgba(31, 22, 101, .14);
}
.ap-input .form-control::placeholder { color: #94a3b8; font-weight: 500; }
.ap-eye {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--ap-purple), var(--ap-pink));
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 8px 16px rgba(106, 92, 255, .35);
}
.ap-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 8px 0 16px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .9);
}
.ap-check input[type="checkbox"] {
  accent-color: var(--ap-purple);
  margin-top: 2px;
  width: 16px;
  height: 16px;
}
.ap-check a {
  color: #ff9de8;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ap-btn {
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .01em;
  color: #fff !important;
  background: linear-gradient(135deg, var(--ap-purple) 0%, var(--ap-pink) 100%) !important;
  box-shadow: 0 14px 32px rgba(106, 92, 255, .42);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.ap-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255, 78, 205, .38);
  color: #fff !important;
}
.ap-btn:active { transform: translateY(0); }
.ap-links {
  margin-top: 16px;
  text-align: center;
}
.ap-links a {
  color: #ddd6fe;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ap-foot {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
}
.ap-foot a {
  color: #ff9de8;
  font-weight: 700;
  text-decoration: none;
}
.ap-foot a:hover { text-decoration: underline; }
.ap-warn {
  margin-top: 16px;
  padding: 11px 13px;
  border-radius: 12px;
  background: rgba(106, 92, 255, .12);
  border: 1px solid rgba(167, 139, 250, .28);
  color: #ddd6fe;
  font-size: 11.5px;
  line-height: 1.5;
  text-align: center;
}
.ap-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(196, 181, 253, .16);
  font-size: 11px;
  color: #c4b5fd;
  font-weight: 500;
}
.ap-trust i { color: #ff9de8; margin-right: 5px; }

.ap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
}
.ap-grid .ap-span-2 { grid-column: 1 / -1; }
.ap-field .error-text {
  display: none;
  margin-top: 5px;
  font-size: 11px;
  color: #ff9de8;
  font-weight: 500;
}
.ap-field .error-text.show { display: block; }

.ap-input.choices-wrap .choices { margin-bottom: 0; }
.ap-input .choices__inner {
  min-height: 50px !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: #fff !important;
  padding-left: 42px !important;
  box-shadow: 0 8px 20px rgba(31, 22, 101, .14);
}
.ap-input .choices.is-focused .choices__inner,
.ap-input .choices.is-open .choices__inner {
  box-shadow: 0 0 0 3px rgba(106, 92, 255, .32), 0 10px 24px rgba(106, 92, 255, .18);
}
.ap-input .choices__list--dropdown,
.ap-input .choices__list[aria-expanded] {
  border-radius: 12px;
  z-index: 30;
  border-color: #ddd6fe !important;
  background: #fff !important;
  box-shadow: 0 16px 32px rgba(31, 22, 101, .18);
}
.ap-input .choices__list--dropdown .choices__item,
.ap-input .choices__list--dropdown .choices__item--selectable {
  color: #1f1665 !important;
  background: #fff;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
}
.ap-input .choices__list--dropdown .choices__item--selectable.is-highlighted {
  background: #f5f3ff !important;
  color: #1f1665 !important;
}
.ap-input .choices__list--dropdown .choices__item--disabled {
  color: #94a3b8 !important;
  opacity: 1;
}
.ap-input .choices__input {
  color: #1f1665 !important;
  background: #fff !important;
}
.ap-input .choices__input::placeholder {
  color: #94a3b8;
  opacity: 1;
}
.ap-input .choices__list--single .choices__item {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #1f1665 !important;
}

@media (max-width: 991.98px) {
  .ap-auth { padding: 0; align-items: stretch; }
  .ap-shell {
    width: 100%;
    min-height: 100vh;
    border-radius: 0;
    border: 0;
  }
  .ap-shell .row { min-height: 100vh; }
  .ap-float-icons { display: none; }
  .ap-form-col {
    padding: 28px 18px 40px;
    border-left: 0;
    min-height: 100vh;
  }
  .ap-form-panel { max-width: 460px; }
}
@media (max-width: 575.98px) {
  .ap-grid { grid-template-columns: 1fr; }
  .ap-grid .ap-span-2 { grid-column: auto; }
  .ap-form-panel h2 { font-size: 1.55rem; }
  .ap-trust { gap: 10px; flex-wrap: wrap; }
}

/* Auth page logo loader (same as APIPartners) */
#loaderOverlay,
.ap-loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(9, 4, 26, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ap-loader-overlay.is-on {
  display: flex !important;
}
.ap-loader {
  position: relative;
  width: 78px;
  height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.ap-loader__ring {
  position: absolute;
  top: 0;
  left: 50%;
  width: 58px;
  height: 58px;
  margin-left: -29px;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, #6a5cff 0%, #ff4ecd 42%, transparent 55%, transparent 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  animation: ap-loader-spin .55s linear infinite;
}
.ap-loader__core {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  margin-top: 6px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(106, 92, 255, .14);
  box-shadow: 0 10px 24px rgba(106, 92, 255, .18);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.ap-loader__core img,
.ap-loader__mark {
  width: 26px;
  height: 26px;
  display: block;
  animation: ap-loader-spin .9s linear infinite;
}
.ap-loader__text {
  font: 700 11px/1 Poppins, system-ui, sans-serif;
  letter-spacing: .04em;
  background: linear-gradient(90deg, #6a5cff, #ff4ecd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: none;
}
@keyframes ap-loader-spin {
  to { transform: rotate(360deg); }
}
.ap-btn.is-busy {
  pointer-events: none;
  opacity: .85;
  filter: saturate(.9);
}

/* Registration success SweetAlert — premium AbhayPe */
.ap-reg-swal.swal2-popup {
  width: min(420px, 94vw) !important;
  border-radius: 24px !important;
  padding: 0 !important;
  overflow: hidden !important;
  font-family: Poppins, system-ui, sans-serif !important;
  box-shadow: 0 28px 64px rgba(31, 22, 101, .28) !important;
  border: 1px solid rgba(196, 181, 253, .35) !important;
}
.ap-reg-swal .swal2-icon { display: none !important; }
.ap-reg-swal .swal2-title { display: none !important; }
.ap-reg-swal .swal2-html-container {
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}
.ap-reg-swal .swal2-actions {
  margin: 0 !important;
  padding: 0 20px 22px !important;
  width: 100%;
}
.ap-reg-swal .swal2-confirm {
  width: 100% !important;
  margin: 0 !important;
  height: 48px !important;
  background: linear-gradient(135deg, #6a5cff 0%, #ff4ecd 100%) !important;
  border: 0 !important;
  border-radius: 14px !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  letter-spacing: .01em !important;
  box-shadow: 0 14px 32px rgba(106, 92, 255, .38) !important;
}
.ap-reg-swal .swal2-confirm:hover {
  filter: brightness(1.05);
}

.ap-reg-hero {
  position: relative;
  padding: 26px 22px 22px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(420px 180px at 85% -10%, rgba(255, 78, 205, .45), transparent 55%),
    linear-gradient(135deg, #4f46e5 0%, #6a5cff 48%, #c026d3 100%);
  overflow: hidden;
}
.ap-reg-hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 70%;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 60%);
  pointer-events: none;
}
.ap-reg-badge {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #6a5cff;
  font-size: 26px;
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, .22),
    0 12px 28px rgba(31, 22, 101, .25);
  position: relative;
  z-index: 1;
  animation: apRegPop .45s cubic-bezier(.2, .9, .3, 1.2);
}
@keyframes apRegPop {
  from { transform: scale(.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.ap-reg-hero h3 {
  margin: 0 0 6px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.02em;
  position: relative;
  z-index: 1;
}
.ap-reg-hero p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, .9);
  position: relative;
  z-index: 1;
}
.ap-reg-body {
  padding: 18px 20px 8px;
  background: #fff;
}
.ap-reg-label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7c6db8;
}
.ap-reg-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ap-reg-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 14px;
  background: linear-gradient(180deg, #faf8ff 0%, #f5f3ff 100%);
  border: 1px solid #ebe4ff;
}
.ap-reg-ico {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 8px 16px rgba(106, 92, 255, .28);
}
.ap-reg-meta { flex: 1; min-width: 0; text-align: left; }
.ap-reg-meta label {
  display: block;
  margin: 0 0 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #8b7fb8;
}
.ap-reg-meta strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #1f1665;
  word-break: break-all;
  line-height: 1.3;
}
.ap-reg-copy-one {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  flex-shrink: 0;
  cursor: pointer;
  background: #fff;
  color: #6a5cff;
  border: 1px solid #e0d7ff;
  display: grid;
  place-items: center;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.ap-reg-copy-one:hover {
  background: #6a5cff;
  color: #fff;
  transform: translateY(-1px);
}
.ap-reg-copy-one.is-ok {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
}
.ap-reg-copy-all {
  width: 100%;
  margin-top: 12px;
  border: 0;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  color: #6a5cff;
  cursor: pointer;
  background: #fff;
  border: 1.5px solid #c4b5fd;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.ap-reg-copy-all:hover,
.ap-reg-copy-all.is-ok {
  background: linear-gradient(135deg, #6a5cff, #ff4ecd);
  border-color: transparent;
  color: #fff;
}
.ap-reg-note {
  display: block;
  margin: 12px 0 4px;
  text-align: center;
  color: #8b7fb8;
  font-size: 12px;
  line-height: 1.45;
}
.ap-reg-note i { color: #ff4ecd; margin-right: 4px; }
