-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpayment.css
More file actions
100 lines (88 loc) · 1.86 KB
/
Copy pathpayment.css
File metadata and controls
100 lines (88 loc) · 1.86 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
@import url(https://fonts.googleapis.com/css2?family=Space+Grotesk&display=swap);
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Space Grotesk', sans-serif;
background-color: black;
color: white;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
cursor: url('dot.png'), auto;
}
.l{
background-color: #ffa500;
color: black;
border: none;
border-radius: 5px;
padding: 10px 20px;
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s;
}
.l:hover{
background-color: #ff9900;
}
.container {
background-color: black;
border-radius: 10px;
padding: 30px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
cursor: url('dot.png'), auto;
}
.payment-form {
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
font-size: 24px;
font-weight: bold;
color: #ffa500;
margin-bottom: 20px;
}
.form-group {
margin-bottom: 15px;
text-align: left;
}
label {
font-weight: bold;
color: #ffa500;
}
input[type="text"],
input[type="email"],
input[type="number"],
select {
width: 100%;
padding: 10px;
border: 2px solid #ffa500;
border-radius: 5px;
background-color: #292929;
color: white;
font-size: 16px;
outline: none;
}
.im{
margin-top: 10px;
width: 200px;
height: 200px;
}
.torch {
width: 100px;
height: 100px;
position: absolute;
background-color: rgba(255, 255, 255, 0.75);
border-radius: 50%;
transform: translate(-35%, -35%);
pointer-events: none;
mix-blend-mode: screen;
transition: width 0.2s, height 0.2s;
z-index: 9999;
background-position: center center;
}