bonusmulesoft/postmaster-pro-form-wizard
0
1/* Custom form styles */2@keyframes float {3 0%, 100% { transform: translateY(0); }4 50% { transform: translateY(-5px); }5}6 7/* Input focus effects */8input:focus, textarea:focus, select:focus {9 box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);10 outline: none;11}12 13/* File upload hover state */14[type="file"] + label:hover {15 background-color: #f5f3ff;16}17 18/* Step indicator animation */19.step-indicator {20 transition: all 0.3s ease;21}22 23.step-indicator.active {24 background-color: #6366f1;25 color: white;26 animation: float 2s ease-in-out infinite;27}28 29/* Custom scrollbar for form */30::-webkit-scrollbar {31 height: 6px;32}33 34::-webkit-scrollbar-track {35 background: #f1f1f1;36 border-radius: 10px;37}38 39::-webkit-scrollbar-thumb {40 background: #c7d2fe;41 border-radius: 10px;42}43 44::-webkit-scrollbar-thumb:hover {45 background: #a5b4fc;46}47 48/* Responsive adjustments */49@media (max-width: 768px) {50 .form-container {51 margin-top: 1rem;52 margin-bottom: 1rem;53 }54}