-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
75 lines (73 loc) · 1.99 KB
/
style.css
File metadata and controls
75 lines (73 loc) · 1.99 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
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f0f0f0;
}
.login {
border: 1px solid black;
width: 400px;
height: 500px;
background: url(Background.jfif);
color: white;
border-radius: 20px;
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.75);
background-size: cover;
background-position: center;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}
form {
box-sizing: border-box;
padding: 40px;
width: 100%;
height: 100%;
backdrop-filter: brightness(40%);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 20px;
}
h1 {
font-weight: normal;
font-size: 24px;
text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
margin-bottom: 20px;
}
table {
color: rgba(255, 255, 255, 0.8);
text-transform: uppercase;
font-size: 10px;
letter-spacing: 2px;
text-align: center;
}
input {
background: rgba(255, 255, 255, 0.3);
height: 40px;
line-height: 40px;
border-radius: 20px;
border: none;
color: white;
text-align: center;
width: 80%;
}
button {
background: rgba(45, 126, 231);
height: 40px;
line-height: 40px;
border-radius: 40px;
border: none;
margin: 10px 0px;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
color: white;
font-size: 12px;
text-transform: uppercase;
width: 80%;
cursor: pointer;
}