-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
91 lines (80 loc) · 1.64 KB
/
style.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
/* Reset some default styling */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #e0f7fa;
background-image: url('./bgimg.jpg');
background-size: cover;
background-position: center;
}
.container {
display: flex;
flex-direction: column;
gap: 1em;
width: 100%;
max-width: 400px;
padding: 2em;
background-color: #ffffffcc;
border-radius: 10px;
box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
}
.container h2 {
text-align: center;
color: #00695c;
font-size: 1.8em;
margin-bottom: 1em;
}
.container form {
display: flex;
flex-direction: column;
}
.container input[type="text"],
.container input[type="password"] {
padding: 1em;
margin: 0.5em 0;
border: 1px solid #ddd;
border-radius: 6px;
font-size: 1em;
transition: all 0.3s ease;
}
.container input[type="text"]:focus,
.container input[type="password"]:focus {
outline: none;
border-color: #00695c;
box-shadow: 0px 0px 4px rgba(0, 150, 136, 0.5);
}
.container button {
padding: 1em;
background-color: #00695c;
color: #fff;
border: none;
border-radius: 6px;
font-size: 1em;
cursor: pointer;
transition: all 0.3s ease;
}
.container button:hover {
background-color: #004d40;
}
.container p {
text-align: center;
color: #555;
margin-top: 1em;
}
.container a {
color: #002f69;
text-decoration: none;
font-weight: bold;
}
.container a:hover {
text-decoration: underline;
}