-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregestration.css
61 lines (57 loc) · 1018 Bytes
/
regestration.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
*{
padding: 0%;
margin: 0%;
}
body{
font-family: sans-serif;
background: url(bg.jpg);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-size: 100%;
color: #fff;
}
.registration-form{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 400px;
padding: 70px;
margin-top: -17px;
background-color: #0000007a;
}
.registration-form h1{
font-size: 35px;
text-align: center;
text-transform: uppercase;
margin: 15px 0;
margin-top: 140px;
}
.registration-form p{
font-size: 20px;
margin: 15px 0;
}
.registration-form input{
font-size: 14px;
padding: 10px 10px;
width: 100%;
border: 0;
border-radius: 5px;
outline: none;
}
.registration-form button{
font-size: 18px;
font-weight: bold;
margin: 20px 0;
padding: 10px 15px;
width: 50%;
border: 0;
border-radius: 5px;
background-color: #fff;
}
.registration-form button:hover{
color: black;
background-color: #fb5200;
cursor: pointer;
}