-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauth-base.css
More file actions
92 lines (81 loc) · 1.76 KB
/
auth-base.css
File metadata and controls
92 lines (81 loc) · 1.76 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
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(#000428, #004e92);
height: 100vh;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
}
.auth-container {
background-color: #ffffff;
padding: 40px 30px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
width: 100%;
max-width: 400px;
text-align: left;
box-sizing: border-box;
}
.auth-container h2 {
text-align: center;
margin: 0 0 25px 0;
padding-bottom: 10px;
font-size: 28px;
font-weight: bold;
border-bottom: 2px solid #e0e0e0;
position: relative;
z-index: 1;
color: #333;
}
.auth-container label {
display: block;
margin-top: 10px;
margin-bottom: 5px;
font-size: 15px;
font-weight: 500;
}
.auth-container input[type="text"],
.auth-container input[type="password"] {
width: 100%;
padding: 12px;
margin-bottom: 15px;
border: 1px solid #cccccc;
border-radius: 6px;
box-sizing: border-box;
font-size: 16px;
}
button {
width: 100%;
padding: 12px;
background-color: #007bff;
color: white;
font-size: 16px;
border: none;
border-radius: 6px;
cursor: pointer;
transition: background-color 0.3s ease;
margin-top: 10px;
}
button:hover {
background-color: #0056b3;
}
#signupMessage {
margin-top: 15px;
color: red;
font-weight: 500;
text-align: center;
}
.auth-link-text {
margin-top: 20px;
font-size: 14px;
color: #333;
text-align: center;
}
.auth-link {
color: #007bff;
text-decoration: none;
}
.auth-link:hover {
text-decoration: underline;
}