-
Notifications
You must be signed in to change notification settings - Fork 0
/
Registration_Page.css
62 lines (53 loc) · 1.08 KB
/
Registration_Page.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
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #4b9600;
}
.container {
width: 500px;
background-color: #ffffff;
color: #4b9600;
border: 5px solid #336600;
border-radius: 40px;
}
.container h1 {
font-size: 36px;
text-align: center;
}
.container .input_box {
position: relative;
width: 70%; height: 30px;
background: transparent;
margin: 0px auto;
padding: 10px 30px 10px 20px;
}
.input_box input {
width: 90%;
height: 80%;
background: #ededed;
border: 3px solid #336600;
outline: none;
}
.input_box input::placeholder {
color: #336600;
padding: 0px 0px 0px 5px;
}
.container .btn {
width: 70%; height: 40px;
background: transparent;
border: none;
padding: 20px 0px 20px 0px;
}
.login_link {
padding-bottom: 10px;
}
.login_link p a {
color: #336600;
text-decoration: none;
font-weight: 500;
}
.login_link p a:hover {
text-decoration: underline;
}