-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathsignup.css
88 lines (76 loc) · 1.52 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
/* General Styles */
body {
font-family: 'Arial', sans-serif;
background: url('https://images.unsplash.com/photo-1544195522-04e7c58ba945?q=80&w=1779&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
color: #111;
}
/* Login and Signup Page */
#login-page, #signup-page {
background: transparent;
backdrop-filter: blur(5px);
padding: 40px;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
text-align: center;
max-width: 400px;
width: 100%;
}
#login-page h1, #signup-page h1 {
font-size: 2rem;
margin-bottom: 10px;
color: #21273f;
}
#login-page p, #signup-page p {
font-size: 1rem;
margin-bottom: 20px;
color: rgb(12, 39, 45);
}
#login-page p a, #signup-page p a{
color: red;
}
/* Form Styles */
.form-group {
margin-bottom: 15px;
text-align: left;
}
.form-group label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
.form-group input {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 8px;
font-size: 1rem;
}
.form-group input:focus {
outline: none;
border-color: #667eea;
}
/* Buttons */
.btn {
padding: 10px 20px;
background: #21273f;
color: white;
border: none;
border-radius: 8px;
cursor: pointer;
font-size: 1rem;
transition: background 0.3s ease;
}
.btn:hover {
background: #5a6fd1;
}
.btn-secondary {
background: #34a853;
}
.btn-secondary:hover {
background: #2d8c4a;
}