/* Report Checkout Forms */
.rc-form-wrap {
    background: linear-gradient(135deg, rgba(60,203,127,0.06), rgba(139,92,246,0.06));
    border: 1px solid rgba(60,203,127,0.15);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}
.rc-form-wrap.rc-relocation {
    background: linear-gradient(135deg, rgba(139,92,246,0.06), rgba(59,130,246,0.06));
    border-color: rgba(139,92,246,0.15);
}
.rc-form-header { text-align: center; margin-bottom: 1.5rem; }
.rc-badge {
    display: inline-block;
    background: rgba(60,203,127,0.15);
    color: #3CCB7F;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}
.rc-badge-accent { background: rgba(139,92,246,0.15); color: #a78bfa; }
.rc-title { font-size: 1.4rem; font-weight: 800; color: #f5f5f7; margin: 0 0 0.5rem; letter-spacing: -0.02em; }
.rc-desc { font-size: 0.85rem; color: #a1a1a6; line-height: 1.5; max-width: 500px; margin: 0 auto; }

.rc-form { max-width: 420px; margin: 0 auto; }
.rc-field { margin-bottom: 1rem; }
.rc-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #a1a1a6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}
.rc-field input,
.rc-field select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #1a1a24;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: #f5f5f7;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.rc-field input:focus,
.rc-field select:focus {
    border-color: #8b5cf6;
}
.rc-field select option { background: #1a1a24; color: #f5f5f7; }

.rc-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #3CCB7F, #2ea86a);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.rc-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(60,203,127,0.3); }
.rc-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }
.rc-btn-text { font-size: 1rem; font-weight: 700; color: #0a0a0f; }
.rc-btn-sub { font-size: 0.7rem; color: rgba(10,10,15,0.7); margin-top: 0.15rem; }
.rc-btn-accent { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.rc-btn-accent .rc-btn-text { color: #fff; }
.rc-btn-accent .rc-btn-sub { color: rgba(255,255,255,0.7); }
.rc-btn-accent:hover { box-shadow: 0 8px 24px rgba(139,92,246,0.3); }

.rc-secure { text-align: center; font-size: 0.75rem; color: #6e6e73; margin-top: 0.75rem; }

/* Teaser */
.rc-teaser-card {
    background: rgba(26,26,36,0.8);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
}
.rc-teaser-header {
    background: rgba(60,203,127,0.1);
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #3CCB7F;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
}
.rc-teaser-stats { display: flex; gap: 0; }
.rc-teaser-stat {
    flex: 1;
    text-align: center;
    padding: 1.25rem 0.75rem;
    border-right: 1px solid rgba(255,255,255,0.06);
}
.rc-teaser-stat:last-child { border-right: none; }
.rc-teaser-label { display: block; font-size: 0.65rem; color: #6e6e73; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.35rem; }
.rc-teaser-value { display: block; font-size: 1.1rem; font-weight: 700; color: #f5f5f7; }
.rc-teaser-locked {
    padding: 1rem 1.25rem;
    background: rgba(139,92,246,0.06);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.rc-teaser-locked p { font-size: 0.8rem; color: #a1a1a6; margin: 0; line-height: 1.5; text-align: center; }

@media (max-width: 640px) {
    .rc-form-wrap { padding: 1.5rem 1rem; }
    .rc-title { font-size: 1.2rem; }
    .rc-teaser-stats { flex-direction: column; }
    .rc-teaser-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 0.75rem; }
}
