File size: 1,947 Bytes
08bb856
 
 
 
 
 
 
 
 
 
 
 
 
f295a64
08bb856
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f295a64
 
08bb856
 
 
f295a64
 
08bb856
 
 
 
f295a64
 
08bb856
 
 
 
 
 
 
 
 
f295a64
 
08bb856
 
 
 
 
f295a64
08bb856
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --cyan-glow: 0 0 10px rgba(0, 247, 255, 0.5), 0 0 20px rgba(0, 247, 255, 0.3);
  --purple-glow: 0 0 10px rgba(179, 0, 255, 0.5), 0 0 20px rgba(179, 0, 255, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0a12;
  color: #f0f0f0;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Animated gradient background */
#background {
  background: linear-gradient(-45deg, #0f0c29, #302b63, #24243e, #0a0a12);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Glassmorphism effect */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom button styles */
.amount-btn.selected,
.currency-btn.selected {
  background: rgba(0, 247, 255, 0.15);
  border-color: #00f7ff;
  box-shadow: var(--cyan-glow);
}

.amount-btn:hover:not(.selected),
.currency-btn:hover:not(.selected) {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Input focus glow */
input:focus {
  box-shadow: 0 0 0 3px rgba(0, 247, 255, 0.3);
}

/* Feather icons styling */
.feather {
  width: 20px;
  height: 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  .lg\:grid-cols-2 {
    grid-template-columns: 1fr;
  }
}

/* Animation for success message */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

.pulse-animation {
  animation: pulse 1.5s infinite;
}