-
Notifications
You must be signed in to change notification settings - Fork 8
/
login_page.css
63 lines (58 loc) · 1.06 KB
/
login_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
63
*{
font-size: 1.2rem;
padding: 0%;
margin: 0%;
}
.container{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border: 4px solid salmon;
border-radius: 13px;
margin: 115px auto;
padding: 30px 26px 0px 23px;
width: 371px;
height: 412px;
background-color: #cfcfd6;
}
.bg{
width: 100%;
position: absolute;
z-index: -1;
opacity: 0.6;
height: 100vh;
}
input{
width: 251px;;
height: 41px;
border: 2px solid red;
border-radius: 10px;
background-color: #ff000000;
}
a{
margin-top: 7px;
color: blue;
}
a:hover{
color: rgb(185, 185, 199);
}
.btn{
display: flex;
align-items: center;
justify-content: center;
width: 109px;
height: 40px;
color: #ffffff;
cursor: pointer;
background-color: #26222200;
}
.btn:hover{
background-color: black;
}
.btnn{
padding-top: 33px;
display: flex;
align-items: center;
justify-content: center;
}