-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (72 loc) · 1.59 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
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
background-color: #f3f4f6;
}
.form-container {
background-color: #ffffff;
padding: 2rem;
border-radius: 10px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
max-width: 400px;
width: 100%;
}
h2 {
color: #333333;
text-align: center;
margin-bottom: 1.5rem;
}
h1 {
font-size: 2.5rem;
font-weight: bold;
text-align: center;
background: linear-gradient(90deg, #4CAF50, #45a049);
-webkit-background-clip: text;
color: transparent;
margin-bottom: 30rem;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
.form-group {
margin-bottom: 1rem;
}
label {
display: block;
margin-bottom: 0.5rem;
color: #555555;
font-weight: bold;
}
input[type="text"],
input[type="password"] {
width: 100%;
padding: 0.75rem;
border: 1px solid #cccccc;
border-radius: 5px;
box-sizing: border-box;
font-size: 1rem;
color: #333333;
background-color: #f9fafb;
}
button[type="submit"] {
width: 100%;
padding: 0.75rem;
border: none;
border-radius: 5px;
font-size: 1rem;
font-weight: bold;
color: #ffffff;
background-color: #4CAF50;
cursor: pointer;
transition: background-color 0.3s ease;
}
button[type="submit"]:hover {
background-color: #45a049;
}
.error {
color: #e74c3c;
font-size: 0.875rem;
margin-top: 0.5rem;
}