-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
97 lines (81 loc) · 1.32 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
body {
font-family: 'Arial', sans-serif;
background-color: #f4f4f4;
color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
text-align: center;
}
.container {
width: 90%;
max-width: 600px;
margin: 0 auto;
}
header .logo {
width: 100px;
margin-bottom: 20px;
}
header h1 {
font-size: 2rem;
margin: 0;
}
header h1 span {
color: #007bff;
}
header p {
font-size: 1.2rem;
margin: 10px 0 20px;
}
form {
display: flex;
flex-direction: column;
gap: 10px;
}
input[type="email"] {
padding: 10px;
width: 100%;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 1rem;
}
button {
padding: 10px 20px;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 1rem;
}
button:hover {
background-color: #0056b3;
}
footer {
margin-top: 20px;
font-size: 0.9rem;
}
.hidden {
display: none;
}
#error-message {
color: red;
margin-top: 10px;
}
@media (min-width: 768px) {
header h1 {
font-size: 2.5rem;
}
header p {
font-size: 1.5rem;
}
form {
flex-direction: row;
justify-content: center;
}
input[type="email"] {
width: 300px;
}
}