
.rocket-form-wrapper { background: #fff; padding: 25px; border-radius: 12px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); max-width: 600px; margin: 0 auto; }
.rocket-form .rf-field-group { margin-bottom: 20px; }
.rocket-form label { display: block; font-weight: 600; margin-bottom: 8px; color: #1e293b; }
.rocket-form .rf-req { color: #e11d48; }
.rocket-form input[type="text"], .rocket-form input[type="email"], .rocket-form input[type="tel"], .rocket-form select, .rocket-form textarea { width: 100%; padding: 12px; border: 1px solid #cbd5e1; border-radius: 6px; font-family: inherit; font-size: 16px; transition: border-color 0.2s; background: #f8fafc; }
.rocket-form input:focus, .rocket-form select:focus, .rocket-form textarea:focus { outline: none; border-color: #3b82f6; background: #fff; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1); }
.rocket-form .rf-submit-btn { width: 100%; padding: 14px; background: #0f172a; color: #fff; border: none; border-radius: 6px; font-size: 16px; font-weight: 700; cursor: pointer; position: relative; display: flex; justify-content: center; align-items: center; }
.rocket-form .rf-submit-btn:hover { background: #1e293b; }
.rocket-form .rf-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.rf-loader { border: 3px solid rgba(255,255,255,0.3); border-radius: 50%; border-top: 3px solid #fff; width: 20px; height: 20px; animation: rf-spin 1s linear infinite; margin-left: 10px; }
@keyframes rf-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.rf-msg { padding: 15px; border-radius: 6px; margin-bottom: 20px; font-weight: 500; }
.rf-msg-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.rf-msg-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
