|
| 1 | +@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&display=swap'); |
| 2 | + |
| 3 | +/* Custom Theme Variables overriding Bootstrap defaults */ |
| 4 | +:root { |
| 5 | + /* Restored Color Palette */ |
| 6 | + --theme-yellow: #ffb800; |
| 7 | + --theme-dark: #2c2e33; |
| 8 | + --theme-bg-gradient: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%); |
| 9 | + --theme-surface: rgba(255, 255, 255, 0.95); |
| 10 | + |
| 11 | + /* Bootstrap Overrides */ |
| 12 | + --bs-body-font-family: 'Nunito', sans-serif; |
| 13 | + --bs-primary: var(--theme-yellow); |
| 14 | + --bs-primary-rgb: 255, 184, 0; |
| 15 | + --bs-secondary: var(--theme-dark); |
| 16 | + --bs-body-bg: #f8fafc; |
| 17 | +} |
| 18 | + |
| 19 | +/* Global Styles */ |
| 20 | +body { |
| 21 | + background: var(--theme-bg-gradient); |
| 22 | + min-height: 100vh; |
| 23 | + font-family: var(--bs-body-font-family) !important; |
| 24 | + color: #334155; |
| 25 | +} |
| 26 | + |
| 27 | +/* Typography */ |
| 28 | +h1, |
| 29 | +h2, |
| 30 | +h3, |
| 31 | +h4, |
| 32 | +h5, |
| 33 | +h6 { |
| 34 | + font-weight: 700; |
| 35 | + color: #1e293b; |
| 36 | + letter-spacing: -0.025em; |
| 37 | +} |
| 38 | + |
| 39 | +/* Button Styling */ |
| 40 | +.btn-primary { |
| 41 | + background-color: var(--theme-yellow); |
| 42 | + border-color: var(--theme-yellow); |
| 43 | + color: #ffffff; |
| 44 | + font-weight: 700; |
| 45 | + padding: 0.75rem 1.5rem; |
| 46 | + border-radius: 8px; |
| 47 | + transition: all 0.2s ease; |
| 48 | +} |
| 49 | + |
| 50 | +.btn-primary:hover, |
| 51 | +.btn-primary:focus { |
| 52 | + background-color: #e5a500; |
| 53 | + border-color: #e5a500; |
| 54 | + color: #ffffff; |
| 55 | + transform: translateY(-1px); |
| 56 | + box-shadow: |
| 57 | + 0 4px 6px -1px rgba(229, 165, 0, 0.2), |
| 58 | + 0 2px 4px -1px rgba(229, 165, 0, 0.1); |
| 59 | +} |
| 60 | +/* Animation */ |
| 61 | +.fade-in-up { |
| 62 | + animation: fadeInUp 0.5s ease-out; |
| 63 | +} |
| 64 | + |
| 65 | +@keyframes fadeInUp { |
| 66 | + from { |
| 67 | + opacity: 0; |
| 68 | + transform: translateY(20px); |
| 69 | + } |
| 70 | + to { |
| 71 | + opacity: 1; |
| 72 | + transform: translateY(0); |
| 73 | + } |
| 74 | +} |
| 75 | +.btn-primary:active { |
| 76 | + transform: translateY(0); |
| 77 | +} |
| 78 | + |
| 79 | +.btn-secondary { |
| 80 | + background-color: var(--theme-dark); |
| 81 | + border-color: var(--theme-dark); |
| 82 | + color: #fff; |
| 83 | +} |
| 84 | + |
| 85 | +/* Card Styling */ |
| 86 | +.card { |
| 87 | + border: 1px solid rgba(255, 255, 255, 0.5); |
| 88 | + border-radius: 16px; |
| 89 | + background-color: var(--theme-surface); |
| 90 | + backdrop-filter: blur(12px); |
| 91 | + box-shadow: |
| 92 | + 0 20px 25px -5px rgba(0, 0, 0, 0.05), |
| 93 | + 0 10px 10px -5px rgba(0, 0, 0, 0.01); |
| 94 | +} |
| 95 | + |
| 96 | +/* Form Controls */ |
| 97 | +.form-control { |
| 98 | + border-radius: 8px; |
| 99 | + border: 1px solid #e2e8f0; |
| 100 | + padding: 0.75rem 1rem; |
| 101 | + font-size: 0.95rem; |
| 102 | + transition: all 0.2s ease; |
| 103 | +} |
| 104 | + |
| 105 | +.form-control:focus { |
| 106 | + border-color: var(--theme-primary); |
| 107 | + box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1); |
| 108 | +} |
| 109 | + |
| 110 | +.form-label { |
| 111 | + font-weight: 500; |
| 112 | + color: #475569; |
| 113 | + margin-bottom: 0.5rem; |
| 114 | +} |
| 115 | + |
| 116 | +/* Links */ |
| 117 | +a { |
| 118 | + text-decoration: none; |
| 119 | + color: var(--theme-primary); |
| 120 | + font-weight: 500; |
| 121 | +} |
| 122 | + |
| 123 | +a:hover { |
| 124 | + color: var(--theme-primary-hover); |
| 125 | + text-decoration: underline; |
| 126 | +} |
0 commit comments