
/* RTF - form styling */
.rtf-vps { padding:50px 20px; background: linear-gradient(180deg,#f5fbff 0%, #eef7ff 100%); }
.rtf-container { max-width:1000px; margin:0 auto; background:#fff; border-radius:12px; padding:28px; box-shadow:0 6px 30px rgba(20,20,60,0.06); }
.rtf-container h2 { text-align:center; color:#232ea1; margin-bottom:12px; font-size:26px; font-weight:800; }
.rtf-steps { text-align:center; margin-bottom:18px; }
.rtf-step { display:inline-block; width:36px; height:36px; border-radius:50%; border:2px solid #2ecc71; color:#2ecc71; line-height:32px; margin:0 6px; font-weight:700; }
.rtf-step.active { background:#2ecc71; color:#fff; }

.rtf-form label { display:block; font-weight:600; margin:12px 0 6px; color:#1f2343; }
.rtf-form input[type="text"], .rtf-form input[type="email"], .rtf-form input[type="url"], .rtf-form select, .rtf-form textarea {
  width:100%; padding:12px; border-radius:6px; border:1px solid #d6ddea; box-sizing:border-box;
  background:#fff; color:#1f2343;
}
.rtf-form textarea { min-height:100px; resize:vertical; }

.rtf-btns { display:flex; gap:12px; margin-top:18px; justify-content:flex-end; flex-wrap:wrap; }
.rtf-btn { padding:10px 20px; border-radius:8px; font-weight:700; cursor:pointer; border:none; }
.rtf-next, .rtf-prev { background:#232ea1; color:#fff; border:2px solid #232ea1; }
.rtf-submit { background:#ff7a45; color:#fff; border:2px solid #ff7a45; }

.rtf-success { text-align:center; padding:18px; background:#e9fbe9; color:#1a7f3c; border-radius:8px; margin-top:18px; font-weight:700; display:none; }

/* responsive */
@media (max-width:900px){
  .rtf-btns { justify-content:stretch; }
  .rtf-btn { flex:1; }
}
