-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
113 lines (95 loc) · 2.13 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* Reset some default styles */
body, html {
margin: 0;
padding: 0;
height: 100%;
font-family: "Poppins", sans-serif;
font-weight: 600;
}
/* Container holding the background image and the content */
.container {
background: url('image.webp') no-repeat center center/cover;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
color: white;
}
/* Main content area */
.content {
background: rgba(0, 0, 0, 0.4); /* Dark overlay */
padding: 40px;
border-radius: 10px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
/* Title and subtitle */
.title {
font-size: 58px;
margin: 0;
}
.subtitle {
font-size: 18px;
margin: -6px 0 53px;
}
/* Sign in form */
.form label {
font-size: 18px;
margin-bottom: 10px;
display: block;
}
.form input {
width: 100%;
padding: 10px;
margin: 10px 0;
border-radius: 25px;
border: none;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.form input:focus {
outline: none;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
/* Login button */
.login-button {
width: 100%;
padding: 10px;
margin-top: 20px;
border-radius: 25px;
border: none;
background-color: #ff5a5f;
color: white;
font-size: 18px;
cursor: pointer;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.login-button:hover {
background-color: #e04848;
}
/* Signup link */
.signup {
margin-top: 20px;
}
.signup a {
color: #ffffff;
text-decoration: none;
font-weight: bold;
}
#email{
color: black;
/* background-color: transparent; */
}
/* Responsive styling */
@media (max-width: 768px) {
.title {
font-size: 36px;
}
.subtitle {
font-size: 18px;
}
.form input, .login-button {
font-size: 14px;
padding: 8px;
}
}