-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathforgot.css
More file actions
103 lines (89 loc) · 2.03 KB
/
forgot.css
File metadata and controls
103 lines (89 loc) · 2.03 KB
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
@import url('https://fonts.googleapis.com/css2?family=Electrolize&display=swap');
* {margin: 0; padding: 0; box-sizing: border-box;}
body{
font-family:'Electrolize', sans-serif;
display:flex;
justify-content: center;
align-items: center;
height: 100vh;
background: url("tech.jpg") no-repeat center;
background-size: cover;
}
body::before{
content:"";
position: absolute; z-index: 1;
top: 0; right: 0; bottom: 0; left: 0;
background-color: rgba(0,0,0,.7);
}
.forgot-form{position: relative; z-index: 2;}
.forgot-form h1{
font-size: 32px; color: #fff;
text-align:center;
margin-bottom: 60px;
}
.bar_logo{
margin-top:40px;
text-align:center;
}
.bar_logo a{
font-size: 32px; color: #fff;
text-align:center;
margin-bottom: 60px;
text-decoration: none;
}
.forgot-area{
width: 400px; position: relative;
margin-top: 20px;}
.forgot-area:first-child {margin-top: 0;}
.forgot-area input{
width: 100%;
padding: 20px 10px 10px;
background-color: transparent;
border:none;
border-bottom: 1px solid #999;
font-size: 18px; color:#fff;
outline: none;
}
.forgot-area label{
position: absolute; left: 10px; top: 15px;
font-size: 18px; color:#999;
transition: top .5s ease;
}
.forgot-area label.warning{
color: red !important;
animation: warning .3s ease;
animation-iteration-count: 3;
}
.forgot-area input:focus + label,
.forgot-area input:valid + label {
top: 0;
font-size: 13px; color: #166cea;
}
.btn-area {margin-top:30px;}
.btn-area button{
width: 100%; height: 50px;
background: #166cea;
color: #fff;
font-size: 20px;
border: none;
border-radius: 25px;
cursor: pointer;
}
.bar_logo{
margin-top:40px;
text-align:center;
}
.bar_logo a{
font-size: 32px; color: #fff;
text-align:center;
margin-bottom: 60px;
text-decoration: none;
}
.caption{
margin-top: 20px;
text-align: center;
}
.caption a {
font-size: 15px; color: #999;
text-decoration: none;
}