
/* =========================
   Screen 5 (Pre-Form Reminder)
   FINAL · Scoped & UEESHOP Safe
   ========================= */

#ps-screen5-cta{
  font-family:Inter, Segoe UI, Arial, sans-serif;
  color:#333;
}
#ps-screen5-cta *{box-sizing:border-box;}

/* Outer spacing (acts as buffer before form) */
#ps-screen5-cta{
  padding:56px 0;
}
@media (max-width:768px){
  #ps-screen5-cta{padding:44px 0;}
}

/* Card container */
#ps-screen5-cta .ps5-card{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:32px 48px;

  background:#f8f9fa;
  border:1px solid #eee;
  border-radius:12px;
  box-shadow:0 2px 14px rgba(0,0,0,.04);

  text-align:center;
}
@media (max-width:768px){
  #ps-screen5-cta .ps5-card{
    padding:26px 22px;
  }
}

/* Title (guide, not section hero) */
#ps-screen5-cta .ps5-title{
  margin:0 0 22px 0;
  font-size:28px;
  font-weight:700;
  line-height:1.25;
  color:#1a2530;
}
@media (max-width:768px){
  #ps-screen5-cta .ps5-title{
    font-size:24px;
  }
}

/* Tip text */
#ps-screen5-cta .ps5-tip{
  margin:12px auto;
  max-width:980px;
  padding:0 6px;
  text-align:left;

  font-size:17px;
  line-height:1.8;
  color:#495057;
}

/* Inline layout for point 1 */
#ps-screen5-cta .ps5-tip--inline{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
#ps-screen5-cta .ps5-inline-text{
  display:inline;
}

/* Register button */
#ps-screen5-cta .ps5-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  cursor:pointer;
  user-select:none;

  padding:12px 22px;
  border-radius:10px;

  font-size:15px;
  font-weight:700;
  line-height:1;

  transition:transform .18s ease, background-color .18s ease, box-shadow .18s ease;
  white-space:nowrap;
}

/* Brown system button */
#ps-screen5-cta .ps5-btn--register{
  background:#8B5A2B;
  color:#fff;
  border:1px solid transparent;
  box-shadow:0 3px 10px rgba(139,90,43,.14);
}
#ps-screen5-cta .ps5-btn--register:hover{
  transform:translateY(-1px);
  background:#7b4f26;
}

/* Down arrows (subtle scroll cue) */
#ps-screen5-cta .ps5-arrows{
  margin:18px 0 0;
  font-size:28px;
  color:#8B5A2B;
  display:inline-block;
  opacity:.7;
  animation:ps5Bounce 2.4s infinite ease-in-out;
}
@keyframes ps5Bounce{
  0%, 20%, 50%, 80%, 100%{transform:translateY(0);}
  40%{transform:translateY(-6px);}
  60%{transform:translateY(-3px);}
}

/* Mobile refinements */
@media (max-width:768px){
  #ps-screen5-cta .ps5-tip--inline{
    align-items:flex-start;
  }
  #ps-screen5-cta .ps5-btn{
    padding:12px 18px;
    font-size:15px;
  }
}
