-
Notifications
You must be signed in to change notification settings - Fork 0
/
style1.css
82 lines (73 loc) · 1.45 KB
/
style1.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
body {
margin: 0;
padding: 0;
/* background: #0c836d; */
background-image: url("cartoon-galaxy-background_23-2148984169.avif");
background-repeat: no-repeat;
background-size: cover;
font-family: sans-serif;
}
.login1 {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.login-rect {
background: transparent;
backdrop-filter: blur(3px);
padding: 40px;
border-radius: 10px;
box-shadow: 0px 0px 20px 2px rgb(147, 168, 185);
animation: slide-in 0.5s ease forwards;
transform-origin: center;
}
.login-rect h1 {
color: #ffffff;
text-align: center;
font-size: 40px;
margin: 0 0 20px 0;
}
.login-rect label {
display: block;
color: #ffffff;
margin-bottom: 5px;
}
.login-rect input[type="email"],
.login-rect input[type="password"] {
width: 100%;
padding: 10px;
border: none;
border-bottom: 1px solid #beb5ce;
margin-bottom: 20px;
font-size: 16px;
background: transparent;
}
.login-rect a {width: 100%;
background: #94c0e9;
color: #080202;
border:none;
position: center;
padding: 10px;
border-radius: 5px;
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
}
.login-rect a:hover {
background: #2ca132;
color: #ffffff;
}
@keyframes slide-in {
from {
transform: scale(0.5);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}