
/* Card activation and resolver styles */
.activation-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
  }

  .activation-panel {
    width: min(100%, 42rem);
    border: 1px solid #d8dee8;
    border-radius: 8px;
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(20, 35, 60, 0.08);
  }

  .activation-kicker,
  .activation-serial,
  .small-text,
  .muted {
    color: #526070;
  }

  .activation-kicker {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    font-weight: 700;
  }

  .activation-panel h1 {
    margin: 0 0 1rem;
    font-size: clamp(1.4rem, 4vw, 2rem);
    line-height: 1.35;
  }

  .checkbox-line {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    line-height: 1.7;
  }

/* Card resolver styles */
.card-resolver-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
  }

  .resolver-status {
    width: min(100%, 38rem);
    border: 1px solid #d8dee8;
    border-radius: 8px;
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(20, 35, 60, 0.08);
  }

  .resolver-kicker {
    margin: 0 0 0.75rem;
    color: #526070;
    font-size: 0.9rem;
    font-weight: 700;
  }

  .resolver-status h1 {
    margin: 0 0 1rem;
    font-size: clamp(1.4rem, 4vw, 2rem);
    line-height: 1.35;
  }

  .resolver-status p {
    line-height: 1.8;
  }

  .resolver-support {
    color: #526070;
    margin-bottom: 0;
  }
