| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); |
|
|
| body { |
| font-family: 'Inter', sans-serif; |
| } |
|
|
| |
| body::before { |
| content: ""; |
| position: fixed; |
| top: 0; |
| left: 0; |
| width: 100%; |
| height: 100%; |
| background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, rgba(0, 115, 119, 0.05) 50%, rgba(5, 5, 5, 1) 100%); |
| z-index: -1; |
| animation: gradientShift 15s ease infinite; |
| background-size: 200% 200%; |
| } |
|
|
| @keyframes gradientShift { |
| 0% { background-position: 0% 50%; } |
| 50% { background-position: 100% 50%; } |
| 100% { background-position: 0% 50%; } |
| } |
|
|
| |
| .process-item { |
| padding: 12px; |
| border-radius: 12px; |
| cursor: pointer; |
| transition: all 0.3s ease; |
| } |
|
|
| .process-item:hover { |
| background: rgba(255, 255, 255, 0.05); |
| } |
|
|
| .process-item.active { |
| background: rgba(212, 175, 55, 0.1); |
| border-left: 3px solid #D4AF37; |
| } |
|
|
| |
| .step-item { |
| position: relative; |
| padding-left: 32px; |
| opacity: 0; |
| transform: translateY(10px); |
| animation: fadeInUp 0.5s forwards; |
| } |
|
|
| @keyframes fadeInUp { |
| to { |
| opacity: 1; |
| transform: translateY(0); |
| } |
| } |
|
|
| .step-item::before { |
| content: ""; |
| position: absolute; |
| left: 0; |
| top: 6px; |
| width: 16px; |
| height: 16px; |
| border-radius: 50%; |
| border: 2px solid #D4AF37; |
| background: #050505; |
| } |
|
|
| .step-item:not(:last-child)::after { |
| content: ""; |
| position: absolute; |
| left: 7px; |
| top: 22px; |
| width: 2px; |
| height: calc(100% - 16px); |
| background: rgba(212, 175, 55, 0.3); |
| } |
|
|
| |
| .loading-spinner { |
| display: inline-block; |
| width: 20px; |
| height: 20px; |
| border: 2px solid rgba(212, 175, 55, 0.3); |
| border-radius: 50%; |
| border-top-color: #D4AF37; |
| animation: spin 1s ease-in-out infinite; |
| margin-left: 8px; |
| } |
|
|
| @keyframes spin { |
| to { transform: rotate(360deg); } |
| } |