-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
61 lines (54 loc) · 1.28 KB
/
styles.css
File metadata and controls
61 lines (54 loc) · 1.28 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
body{
background: rgb(2, 0, 36);
background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(144, 42, 158, 1) 58%, rgba(0, 212, 255, 1) 95%);
}
#auth {
padding: 20px;
/* background-color: rgba(0,0,0,0.7); */
background-image: url(WhatsApp\ Image\ 2025-02-11\ at\ 00.39.24.jpeg);
background-size: cover;
border-radius: 50px;
margin: 20px auto;
width: 50%;
text-align: center;
color: whitesmoke;
}
#auth h2, #auth h3 {
margin-bottom: 20px;
}
#loginForm, #registerForm {
display: flex;
flex-direction: column;
align-items: center;
}
#loginForm label, #registerForm label {
margin-bottom: 10px;
font-size: 1.2rem;
}
#loginForm input, #registerForm input {
padding: 10px;
margin-bottom: 15px;
width: 80%;
border-radius: 30px;
border: none;
}
#loginForm button, #registerForm button {
padding: 10px 20px;
font-size: 1rem;
background-color: #ff6f61;
border: none;
color: #fff;
cursor: pointer;
transition: background-color 0.3s;
}
#loginForm button:hover, #registerForm button:hover {
background-color: #ff3b2f;
}
#authMessage {
margin-top: 15px;
font-size: 1rem;
}
hr{
height: 5px;
background-color: whitesmoke;
}