-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment.css
86 lines (77 loc) · 1.33 KB
/
payment.css
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
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap');
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
.container{
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background: #1f242d;
padding: 25px;
}
.container form{
width: 700px;
padding: 40px;
background: #fff;
border-radius: 10px;
}
form .row{
display: flex;
gap: 15px;
flex-wrap: wrap;
}
.row .column{
flex: 1 1 250px;
}
.column .title{
font-size: 20px;
color: #333;
text-transform: uppercase;
margin-bottom: 5px;
}
.column .input-box{
margin: 15px 0;
}
.input-box span{
display: block;
margin: 10px;
}
.input-box input{
width: 100%;
padding: 10px 15px;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 15px;
}
.column .flex{
display: flex;
gap: 15px;
}
.flex input{
margin-top: 5px;
}
.input-box img{
height: 34px;
margin-top: 5px;
filter: drop-shadow(0 0 1px #000);
}
form .btn{
width: 100%;
padding: 12px;
background: #ff0080;
outline: none;
border: none;
border-radius: 6px;
font-size: 17px;
color: #fff;
margin-top: 5px;
cursor: pointer;
}
form .btn:hover{
background: #c20061;
}