:root {
  --atm-cream: #fffaf4;
  --atm-paper: #ffffff;
  --atm-ink: #3f3a36;
  --atm-muted: #736a64;
  --atm-rose: #d88984;
  --atm-rose-dark: #b96662;
  --atm-sage: #9cae93;
  --atm-gold: #d8ad62;
  --atm-line: #eadfd6;
  --atm-shadow: 0 24px 70px rgba(74, 58, 47, 0.22);
}

.atm-login-button {
  font: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.atm-login-button--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--atm-rose);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 9px 24px rgba(216, 137, 132, .28);
}

.atm-login-button--primary:hover,
.atm-login-button--primary:focus {
  background: var(--atm-rose-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(185, 102, 98, .32);
}

.atm-login-button--text {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--atm-rose-dark);
  font-weight: 700;
}

.atm-login-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.atm-login-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.atm-login-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45, 39, 35, .58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.atm-login-dialog {
  position: relative;
  width: min(100%, 470px);
  max-height: calc(100vh - 44px);
  overflow: auto;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 30px;
  background: var(--atm-paper);
  color: var(--atm-ink);
  box-shadow: var(--atm-shadow);
  transform: translateY(16px) scale(.98);
  transition: transform .25s ease;
}

.atm-login-modal.is-open .atm-login-dialog {
  transform: translateY(0) scale(1);
}

.atm-login-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(63,58,54,.12);
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: var(--atm-ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(63,58,54,.1);
}

.atm-login-close:hover,
.atm-login-close:focus {
  background: var(--atm-cream);
  color: var(--atm-rose-dark);
}

.atm-login-accent {
  position: relative;
  min-height: 118px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 29px 29px 45% 45% / 29px 29px 35% 35%;
  background:
    radial-gradient(circle at 22% 30%, rgba(255,255,255,.78) 0 5px, transparent 6px),
    radial-gradient(circle at 76% 24%, rgba(255,255,255,.62) 0 4px, transparent 5px),
    linear-gradient(135deg, #f6d7d0 0%, #f7e8d5 48%, #dfe8d7 100%);
}

.atm-login-book {
  font-size: 46px;
  filter: drop-shadow(0 8px 12px rgba(78, 61, 47, .14));
}

.atm-login-spark {
  position: absolute;
  color: var(--atm-gold);
  font-size: 25px;
}

.atm-login-spark--one { left: 27%; top: 30%; }
.atm-login-spark--two { right: 26%; bottom: 24%; }

.atm-login-content {
  padding: 28px 38px 34px;
  text-align: center;
}

.atm-login-kicker {
  margin-bottom: 7px;
  color: var(--atm-rose-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.atm-login-content h2 {
  margin: 0;
  color: var(--atm-ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(30px, 6vw, 40px);
  line-height: 1.1;
}

.atm-login-intro {
  margin: 12px auto 24px;
  max-width: 340px;
  color: var(--atm-muted);
  font-size: 15px;
  line-height: 1.6;
}

#atm-login-form {
  text-align: left;
}

#atm-login-form p {
  margin: 0 0 16px;
}

#atm-login-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--atm-ink);
  font-size: 13px;
  font-weight: 750;
}

#atm-login-form input[type='text'],
#atm-login-form input[type='password'] {
  width: 100%;
  min-height: 50px;
  padding: 12px 15px;
  border: 1px solid var(--atm-line);
  border-radius: 14px;
  background: var(--atm-cream);
  color: var(--atm-ink);
  font: inherit;
  box-sizing: border-box;
  outline: none;
}

#atm-login-form input[type='text']:focus,
#atm-login-form input[type='password']:focus {
  border-color: var(--atm-rose);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(216, 137, 132, .14);
}

#atm-login-form .login-remember label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--atm-muted);
  font-weight: 600;
  cursor: pointer;
}

#atm-login-form .login-submit {
  margin-top: 5px;
}

#atm-login-form .button-primary {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 14px;
  background: var(--atm-rose);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(216, 137, 132, .28);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

#atm-login-form .button-primary:hover,
#atm-login-form .button-primary:focus {
  background: var(--atm-rose-dark);
  transform: translateY(-1px);
  box-shadow: 0 13px 28px rgba(185, 102, 98, .3);
}

.atm-login-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
}

.atm-login-links a {
  color: var(--atm-rose-dark);
  font-weight: 700;
  text-decoration: none;
}

.atm-login-links a:hover,
.atm-login-links a:focus {
  text-decoration: underline;
}

.atm-login-note {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--atm-line);
  color: var(--atm-muted);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
}

body.atm-login-no-scroll {
  overflow: hidden;
}

@media (max-width: 520px) {
  .atm-login-modal { padding: 12px; }
  .atm-login-dialog { max-height: calc(100vh - 24px); border-radius: 24px; }
  .atm-login-accent { min-height: 98px; border-radius: 23px 23px 38% 38%; }
  .atm-login-content { padding: 24px 20px 28px; }
  .atm-login-close { top: 10px; right: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .atm-login-modal,
  .atm-login-dialog,
  .atm-login-button,
  #atm-login-form .button-primary {
    transition: none !important;
  }
}

/* ==================== A TEACHER MOM HEADER ==================== */
.atm-header,.atm-header *{box-sizing:border-box}.atm-header{background:#F2C6DE;position:sticky;top:0;z-index:9999;width:100%;line-height:normal}.atm-header-inner{max-width:1400px;margin:auto;padding:18px 36px;display:flex;align-items:center;justify-content:space-between;gap:24px}.atm-logo-area{display:flex;align-items:center;gap:12px;flex-shrink:0;text-decoration:none!important;color:#2C2535!important}.atm-logo-mark{width:44px;height:44px;background:#C9E4DE;border-radius:999px;display:flex;align-items:center;justify-content:center;font-family:Nunito,sans-serif;font-weight:700;font-size:23px;letter-spacing:-2px}.atm-site-title{font-family:Nunito,sans-serif;font-size:30px;font-weight:600;letter-spacing:-1px;line-height:1}.atm-desktop-menu{display:flex;align-items:center;gap:32px;font-family:Nunito,sans-serif;font-size:17px;font-weight:600;color:#2C2535}.atm-desktop-menu a,.atm-mobile-menu a{color:inherit;text-decoration:none}.atm-desktop-menu a:hover,.atm-mobile-menu a:hover{opacity:.72}.atm-actions{display:flex;align-items:center;gap:14px;flex-shrink:0}.atm-cta,.atm-mobile-cta{background:#F7D9C4;color:#2C2535!important;font-family:Nunito,sans-serif;font-weight:700;padding:12px 26px;border-radius:999px;text-decoration:none!important;font-size:14px;text-transform:uppercase;letter-spacing:1px;white-space:nowrap}.atm-hamburger{display:none;width:44px;height:44px;background:rgba(255,255,255,.35);border:0;border-radius:14px;cursor:pointer;padding:0;position:relative}.atm-hamburger span{position:absolute;left:11px;width:22px;height:2.5px;background:#2C2535;border-radius:999px;transition:.25s}.atm-hamburger span:nth-child(1){top:14px}.atm-hamburger span:nth-child(2){top:21px}.atm-hamburger span:nth-child(3){top:28px}.atm-hamburger.is-open span:nth-child(1){top:21px;transform:rotate(45deg)}.atm-hamburger.is-open span:nth-child(2){opacity:0}.atm-hamburger.is-open span:nth-child(3){top:21px;transform:rotate(-45deg)}.atm-mobile-menu{background:#F2C6DE;padding:18px 28px 26px}.atm-mobile-menu[hidden]{display:none!important}.atm-mobile-menu-inner{display:flex;flex-direction:column;gap:18px;font-family:Nunito,sans-serif;font-size:20px;font-weight:600;color:#2C2535}.atm-mobile-cta{text-align:center;margin-top:4px}.atm-mobile-menu.is-open{animation:atmMenuSlideDown .35s cubic-bezier(.16,1,.3,1) both}@keyframes atmMenuSlideDown{from{opacity:0;transform:translateY(-12px)}to{opacity:1;transform:none}}@media(max-width:1050px){.atm-desktop-menu{gap:20px;font-size:16px}}@media(max-width:900px){.atm-desktop-menu{display:none}.atm-hamburger{display:block}.atm-header-inner{padding:16px 24px}}@media(max-width:600px){.atm-header-inner{padding:14px 18px;gap:12px}.atm-logo-mark{width:40px;height:40px;font-size:21px}.atm-site-title{font-size:24px}.atm-cta{display:none}}@media(max-width:420px){.atm-site-title{font-size:21px}.atm-logo-area{gap:9px}}
