/* ============================================================
   REGISTER PROMPT PAGE STYLES
   /css/pages/register-prompt.css
   ============================================================ */

.rp-hero {
    text-align: center;
    padding: 2.5rem 1rem 1.5rem;
}
.rp-hero h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.rp-hero p {
    font-size: 1.05rem;
    opacity: 0.75;
    max-width: 520px;
    margin: 0 auto;
}

.rp-context-banner {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 1.5;
}
[data-bs-theme="dark"] .rp-context-banner {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}
.rp-context-banner i {
    color: #3b82f6;
    margin-right: 0.4rem;
}

/* Feature grid */
.rp-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.rp-feature {
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.rp-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
[data-bs-theme="dark"] .rp-feature:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.rp-feature .rp-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 0.85rem;
}
.rp-feature h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}
.rp-feature p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
    line-height: 1.45;
}

/* Icon colour variants */
.rp-icon-blue   { background: rgba(59,130,246,0.12); color: #3b82f6; }
.rp-icon-green  { background: rgba(34,197,94,0.12);  color: #22c55e; }
.rp-icon-amber  { background: rgba(245,158,11,0.12); color: #f59e0b; }
.rp-icon-purple { background: rgba(168,85,247,0.12); color: #a855f7; }
.rp-icon-red    { background: rgba(239,68,68,0.12);  color: #ef4444; }
.rp-icon-teal   { background: rgba(20,184,166,0.12); color: #14b8a6; }

/* CTA section */
.rp-cta {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 14px;
    margin-bottom: 1.5rem;
}
.rp-cta h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.rp-cta p {
    opacity: 0.7;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}
.rp-cta .btn {
    padding: 0.6rem 2rem;
    font-weight: 600;
    font-size: 1rem;
}
.rp-cta .rp-login-link {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.88rem;
    opacity: 0.65;
}
.rp-cta .rp-login-link a {
    text-decoration: underline;
}

/* Stats bar */
.rp-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    text-align: center;
    padding: 1.5rem 0 0.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}
.rp-stats .rp-stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}
.rp-stats .rp-stat-label {
    font-size: 0.8rem;
    opacity: 0.65;
}
