/* ═══════════════════════════════════════════════
   AT Health — Reorder Page Styles
   Prefix: ro-
   ═══════════════════════════════════════════════ */

.ro-hero {
    background: var(--ah-cream);
}

.ro-form-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid var(--ah-gray-200);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
    padding: 40px;
}

.ro-input {
    width: 100%;
    padding: 14px 20px;
    background: #fff;
    border: 2px solid var(--ah-gray-200);
    border-radius: 12px;
    font-size: 15px;
    color: var(--ah-gray-900);
    transition: all 0.2s ease;
    outline: none;
}

.ro-input:focus {
    border-color: var(--ah-purple-500);
    box-shadow: 0 0 0 4px rgba(142, 136, 208, 0.1);
}

.ro-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ah-purple-600);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
