forked from anuragverma108/SwapReads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
address.css
94 lines (79 loc) · 1.51 KB
/
address.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
87
88
89
90
91
92
93
94
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
color: #333;
margin: 0;
padding: 0;
background-image: url(/map.jpg);
background-position: center;
background-attachment: fixed;
justify-content: center;
align-items: center;
}
.container {
max-width: 500px;
margin: 60px auto;
padding: 30px;
background-color: #bcb7b773;
backdrop-filter: blur(5px);
border: 1px solid #ccc;
border-radius: 15px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.form-group {
margin-bottom: 25px;
}
label {
display: block;
margin-bottom: 8px;
font-weight: bold;
}
input[type="text"] {
width: 100%;
height: 45px;
padding: 12px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
transition: border-color 0.3s;
}
input[type="text"]:focus {
border-color: #4CAF50;
outline: none;
}
button {
width: 100%;
height: 45px;
font-size: 16px;
background-color: #4dad50d3;
color: #fff;
border: none;
border-radius: 5px;
transition: background-color 0.3s;
}
button:hover {
background-color: #45a049;
}
.back-btn {
background-color: #666666a9;
margin-top: 10px;
}
.back-btn:hover {
background-color: #555;
}
@media (max-width: 768px) {
.container {
margin: 30px auto;
}
}
@media (max-width: 480px) {
.container {
padding: 15px;
}
input[type="text"] {
height: 35px;
}
button {
height: 35px;
}
}