-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign-up.css
48 lines (48 loc) · 933 Bytes
/
sign-up.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
* {
padding: 0;
margin: 0;
font-family: sans-serif;
}
body {
background: url('./bg.webp') no-repeat;
background-size: cover;
color: #fff;
}
.Registration-form {
width: 350px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
position: absolute;
}
.Registration-form h1 {
font-size: 30px;
text-align: center;
text-transform: uppercase;
margin: 40px 0;
}
.Registration-form p {
font-size: 20px;
margin: 15px 0;
}
.Registration-form input {
font-size: 16px;
width: 100%;
padding: 15px 10px;
border: 0;
outline: none;
border-radius: 5px;
}
.Registration-form button {
font-size: 18px;
font-weight: bold;
margin: 20px 0;
padding: 10px 15px;
width: 50%;
border-radius: 5px;
border: 0;
background-color: #fff;
}
.Registration-form button:hover {
color: blue;
}