-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
94 lines (80 loc) · 1.73 KB
/
styles.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
body {
font-family: Arial, sans-serif;
background-image: url(garena3.jpg);
background-repeat: no-repeat;
background-size: auto;
background-position: top;
background-size: 500px 210px;
background-color: #1e1e1e;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
flex-direction: column;
}
form {
background-color: #2b2b2b;
padding: 40px;
border-radius: 10px;
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
max-width: 400px;
width: 100%;
text-align: center;
}
h2 {
margin-bottom: 30px;
color: #ff4500;
}
input[type="email"],
input[type="password"],
input[type="text"] {
width: 100%;
padding: 15px;
margin: 10px 0;
border: 1px solid #3e3e3e;
border-radius: 5px;
background-color: #333;
color: #fff;
font-size: 16px;
outline: none;
}
input::placeholder {
color: #aaa;
}
/* Button styling */
button {
background-color: #ff4500;
color: white;
padding: 15px;
width: 100%;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
margin-top: 20px;
}
button:hover {
background-color: #e63900;
}
/* Link styling */
a {
display: block;
margin-top: 15px;
color: #fff;
text-decoration: none;
font-size: 14px;
}
a:hover {
color: #ff4500;
text-decoration: underline;
}
/* Additional styling for container centering */
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh; /* Ensures the container takes up the full height of the screen */
flex-direction: column;
}