-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbody_2.css
73 lines (63 loc) · 1.27 KB
/
body_2.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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #fcf8e8;
}
.container {
max-width: 600px;
margin: 50px auto;
background-color: #fcf8e8;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
font-weight: bold;
}
.input-box {
margin-bottom: 20px;
}
label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
input {
width: 100%;
padding: 10px;
margin-bottom: 10px;
box-sizing: border-box;
background-color: #D4E2D4;
border: none;
outline: none;
}
button {
padding: 12px 24px;
background-color: #ECB390;
color: #fff;
border: none;
cursor: pointer;
font-weight: bold;
border-radius: 12px;
}
button:hover {
background-color: #DF7861;
}
.signup-box {
text-align: center;
}
.signup-button {
padding: 14px 28px;
background-color: #DF7861;
color: white;
border: none;
cursor: pointer;
font-weight: bold;
font-size: 18px;
border-radius: 16px;
}
.signup-button:hover {
background-color: #ECB390;
}