-
Notifications
You must be signed in to change notification settings - Fork 1
/
signup.css
94 lines (79 loc) · 1.51 KB
/
signup.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
92
93
94
/* styles.css - singup page */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background: linear-gradient(135deg, #0a1930, #1261a0);
color: #fff;
}
.container {
width: 100%;
max-width: 400px;
padding: 20px;
background: #1e2b44;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.signup-box h2 {
margin-bottom: 10px;
text-align: center;
color: #ffca28;
}
.subtext {
font-size: 0.9em;
color: #aaa;
text-align: center;
margin-bottom: 20px;
}
.input-box {
margin-bottom: 15px;
}
.input-box label {
font-size: 0.85em;
color: #bbb;
}
.input-box input {
width: 100%;
padding: 10px;
margin-top: 5px;
font-size: 1em;
color: #333;
border: none;
border-radius: 4px;
}
.input-box input:focus {
outline: 2px solid #ffca28;
}
.btn {
width: 100%;
padding: 10px;
font-size: 1em;
color: #1e2b44;
background-color: #ffca28;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background 0.3s;
}
.btn:hover {
background-color: #e0b025;
}
.login-link {
text-align: center;
margin-top: 15px;
font-size: 0.85em;
}
.login-link a {
color: #ffca28;
text-decoration: none;
}
.login-link a:hover {
text-decoration: underline;
}