-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.css
120 lines (107 loc) · 1.99 KB
/
login.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
*{
font-family:'Poppins' , sans-serif;
margin:0;
padding:0;
}
section{
display:flex;
justify-content:center;
align-items:center;
min-height:100vh;
width:100%;
background-image:url('logunbg.jpg');
background-size:cover;
}
.form-box{
position:relative;
width:400px;
height:450px;
background-color:transparent;
border:2px solid rgba(255,255,255,0.5);
border-radius:20px;
backdrop-filter:blur();
display:flex;
justify-content:center;
align-items:center;
}
h2{
font-size:2em;
color:aliceblue;
text-align:center;
}
.input-box{
position:absolute;
margin:30px 0;
width:310px;
border-bottom:2px solid transparent;
color:transparent;
pointer-events:none;
font-size:1em;
transition:.3s;
}
input.focus ~ label,
input.valid ~ label{
top:-5px;
}
.inputbox input{
width:100%;
height:50px;
background:transparent;
border:none;
outline:none;
font-size:1em;
padding:0 35px 0 5px;
color:aliceblue;
}
.inputbox ion-icon{
position:relative;
right:8px;
color:aliceblue;
font-size:1.2em;
top:20px;
}
.forgot{
margin:-15px 0 15px;
font-size:.9em;
color:aliceblue;
display:flex;
justify-content:center;
}
.forgot label input{
margin-right:3px;
}
.forgot label a {
color:aliceblue;
text-decoration:none;
}
.forgot label a:hover{
text-decoration:underline;
}
button{
width:100%;
height:40px;
border-radius:40px;
background:white;
border:none;
outline:none;
cursor:pointer;
font-size:1em;
font-weight:600;
}
.register{
font-size:.9em;
color:aliceblue;
text-align:center;
margin:25px 0 10px;
}
.register p a{
text-decoration:none;
color:aliceblue;
font-weight:600;
}
.register p a:hover{
text-decoration:underline;
}
label{
color:aliceblue;
}