-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlog.css
More file actions
111 lines (95 loc) · 1.81 KB
/
Copy pathlog.css
File metadata and controls
111 lines (95 loc) · 1.81 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
body {
margin: 0;
font-family: 'Poppins', sans-serif;
background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
color: white;
display: flex;
flex-direction: column;
min-height: 100vh;
}
.login-main {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
padding: 3rem 1rem;
}
.login-box {
background: rgba(26, 26, 46, 0.85);
border: 2px solid rgba(255, 255, 255, 0.15);
border-radius: 15px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
width: 100%;
max-width: 420px;
text-align: center;
padding: 2rem;
}
.login-logo {
width: 90px;
height: auto;
margin-bottom: 1rem;
}
.login-box h2 {
font-size: 1.6rem;
margin-bottom: 1.5rem;
color: #fff;
}
.login-form {
display: flex;
flex-direction: column;
gap: 1rem;
}
.login-form input {
padding: 0.9rem;
border-radius: 10px;
border: none;
outline: none;
background: rgba(255, 255, 255, 0.1);
color: #fff;
font-size: 1rem;
}
.login-form input::placeholder {
color: rgba(255, 255, 255, 0.6);
}
.login-form button {
padding: 0.9rem;
border-radius: 10px;
border: none;
cursor: pointer;
background: linear-gradient(135deg, #2d4a8e 0%, #1e3a5f 100%);
color: white;
font-size: 1.1rem;
font-weight: 600;
transition: 0.3s;
width: 100%;
}
.login-form button:hover {
transform: scale(1.05);
background: linear-gradient(135deg, #3c6ac2 0%, #264b78 100%);
}
.signup-link {
margin-top: 1.5rem;
font-size: 0.95rem;
color: rgba(255, 255, 255, 0.8);
}
.signup-link a {
color: #4aa8ff;
text-decoration: none;
font-weight: 500;
}
.signup-link a:hover {
text-decoration: underline;
}
/* Responsive */
@media (max-width: 480px) {
.login-box {
padding: 1.5rem;
}
.login-box h2 {
font-size: 1.3rem;
}
.login-form input,
.login-form button {
font-size: 0.95rem;
}
}