-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylereg.css
89 lines (77 loc) · 1.38 KB
/
stylereg.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
@import url('https://fonts.googleapis.com/css?family=Roboto');
body{
font-family: 'Roboto',sans-serif;
background: url(mountain.png) no-repeat center center fixed;
background-size: cover;
}
.main-section{
margin: 0 auto;
margin-top: 130px;
padding: 0;
}
.modal-content{
background-color: #3b4652;
opacity: 0.95;
padding: 0 18px;
box-shadow: 0px 0px 3px #848484;
}
.user-img{
margin-top: -50px;
margin-bottom: 35px;
}
.user-img img{
height: 100px;
width: 100px;
border-radius: 20% ;
box-shadow: 0px 0px 2px #3b4652;
}
.form-group{
margin-bottom: 25px;
}
.form-group input {
height: 42px;
border-radius: 5px;
border: 0;
font-size: 18px;
padding-left: 54px;
}
.form-group::before{
font-family: 'Font Awesome\ 5 Free';
content: "\f007";
position: absolute;
font-size: 22px;
color: #555e60;
left: 28px;
top: 23px;
padding-top: 4px;
}
.form-group:last-of-type::before{
content: "\f023";
top: 90px;
}
button{
width: 60%;
margin: 5px 0 25px;
}
.btn{
background-color: #27c2a5;
color: #fff;
font-size:20px;
padding: 7px 14px;
border-radius: 5px;
border-bottom: 4px solid #219882;
}
.btn:hover, .btn:focus{
background-color: #25a890;
border-bottom: 4px solid #25a890;
}
.svg-inline--fa{
font-size:20px;
margin-right: 7px;
}
.forgot{
padding: 5px 0 25px;
}
.forgot a{
color: #c2fbfc;
}