-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyle2.css
More file actions
89 lines (79 loc) · 1.62 KB
/
Copy pathstyle2.css
File metadata and controls
89 lines (79 loc) · 1.62 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/* General page styling */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
box-sizing: border-box;
}
/* Login container styling */
.login-container {
background-color: #fff;
padding: 40px;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 400px;
text-align: center;
}
/* Title styling */
h2 {
margin-bottom: 30px;
font-size: 1.8rem;
color: #333;
}
/* Input field styling */
.input-field {
width: 100%;
padding: 12px;
margin: 10px 0;
border-radius: 8px;
border: 1px solid #ddd;
font-size: 1rem;
background-color: #f9f9f9;
transition: border-color 0.3s ease;
}
/* Focus state for input fields */
.input-field:focus {
border-color: #4CAF50;
outline: none;
background-color: #fff;
}
/* Button styling */
.btn-login {
width: 100%;
padding: 14px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 8px;
font-size: 1.2rem;
cursor: pointer;
font-weight: bold;
transition: background-color 0.3s ease, transform 0.2s ease;
}
/* Button hover effect */
.btn-login:hover {
background-color: #388E3C;
transform: scale(1.05);
}
/* Responsive design */
@media (max-width: 600px) {
.login-container {
padding: 30px;
}
h2 {
font-size: 1.6rem;
}
.input-field {
font-size: 1rem;
}
.btn-login {
font-size: 1rem;
padding: 12px;
}
}