-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
131 lines (107 loc) · 2.4 KB
/
styles.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
body{
height: 100vh;
background: #322b72 !important;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.card{
overflow: hidden;
border: 0 !important;
border-radius: 20px !important;
box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
}
.img-left{
width: 45%;
background: url('img/img.jpeg') center;
background-size: cover;
}
.card-body{
padding: 2rem;
}
.title{
margin-bottom: 2rem;
}
.form-input{
position: relative;
}
.form-input input{
width: 100%;
height: 45px;
padding-left: 40px;
margin-bottom: 20px;
box-sizing: border-box;
box-shadow: none;
border: 1px solid #00000020;
border-radius: 50px;
outline: none;
background: transparent;
}
.form-input span{
position: absolute;
top: 10px;
padding-left: 15px;
color: #00A5CD;
}
.form-input input::placeholder{
color: black;
padding-left: 0px;
}
.form-input input:focus, .form-input input:valid{
border: 2px solid #00A5CD;
}
.form-input input:focus::placeholder{
color: #454b69;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before{
background-color: #007bff !important;
border: 0px;
}
.form-box button[type="submit"]{
margin-top: 10px;
border: none;
cursor: pointer;
border-radius: 50px;
background: #019966;
color: #fff;
font-size: 90%;
font-weight: bold;
letter-spacing: .1rem;
transition: 0.5s;
padding: 12px;
}
.form-box button[type="submit"]:hover{
background: #02885b;
}
.forget-link, .register-link{
color: #007bff;
font-weight: bold;
}
.forget-link:hover, .register-link:hover{
color: #0069d9;
text-decoration: none;
}
.form-box .btn-social{
color: white !important;
border: 0;
font-weight: bold;
}
.form-box .btn-facebook{
background: #4866a8;
}
.form-box .btn-google{
background: #da3f34;
}
.form-box .btn-twitter{
background: #33ccff;
}
.form-box .btn-facebook:hover{
background: #3d578f;
}
.form-box .btn-google:hover{
background: #bf3b31;
}
.form-box .btn-twitter:hover{
background: #2eb7e5;
}