.account-nudge {
  position: fixed;
  z-index: 175;
  right: 22px;
  bottom: 22px;
  width: min(390px, calc(100% - 44px));
  padding: 27px 28px 24px;
  border: 1px solid rgba(7,27,54,.12);
  background: #fbfaf7;
  color: #071b36;
  box-shadow: 0 20px 65px rgba(4,18,36,.2);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .25s ease, transform .25s ease;
}

.account-nudge.visible { opacity: 1; transform: none; }
.account-nudge > span { display: block; margin-bottom: 8px; color: #9a7650; font-size: 9px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.account-nudge > strong { display: block; padding-right: 28px; font-family: var(--serif, "Italiana", serif); font-size: 27px; font-weight: 400; line-height: 1.15; }
.account-nudge > p { margin: 10px 0 18px; color: #616b76; font-size: 12px; line-height: 1.65; }
.account-nudge > div { display: grid; grid-template-columns: 1.15fr 1fr; gap: 7px; }
.account-nudge > div button { min-height: 44px; padding: 10px 12px; border: 1px solid #071b36; font-size: 9px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; cursor: pointer; }
.account-nudge-register { background: #071b36; color: #fff; }
.account-nudge-later { background: transparent; color: #071b36; }
.account-nudge-close { position: absolute; top: 12px; right: 13px; width: 34px; height: 34px; padding: 0; border: 0; background: transparent; color: #071b36; font-size: 25px; cursor: pointer; }

@media (max-width: 640px) {
  .account-nudge { right: 12px; bottom: 12px; width: calc(100% - 24px); padding: 24px 20px 20px; }
  .account-nudge > strong { font-size: 25px; }
  .account-nudge > p { font-size: 13px; }
  .account-nudge > div { grid-template-columns: 1fr; }
  .account-nudge > div button { min-height: 48px; font-size: 10px; }
}
