-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
94 lines (81 loc) · 1.63 KB
/
styles.css
File metadata and controls
94 lines (81 loc) · 1.63 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
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #3b4252; /* Dark background */
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: 'Arial', sans-serif;
}
.container {
background-color: white;
width: 720px;
display: flex;
border-radius: 12px;
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
overflow: hidden;
}
.text-container {
padding: 2rem;
flex: 1;
}
.text-container h1 {
font-size: 1.8rem;
color: #1e293b;
margin-bottom: 1rem;
}
.text-container p {
color: #64748b;
font-size: 1rem;
margin-bottom: 1.5rem;
}
ul {
list-style: none;
margin-bottom: 2rem;
}
ul li {
display: flex;
align-items: center;
margin-bottom: 0.5rem;
color: #1e293b;
font-size: 1rem;
}
ul li::before {
content: "✔";
color: #ec5a4a; /* Red check icon */
font-weight: bold;
margin-right: 0.5rem;
}
input[type="email"] {
width: 100%;
padding: 0.75rem;
border: 1px solid #e5e7eb;
border-radius: 8px;
margin-bottom: 1rem;
font-size: 1rem;
}
button {
background-color: #1e293b;
color: white;
width: 100%;
padding: 0.75rem;
border: none;
border-radius: 8px;
font-size: 1rem;
cursor: pointer;
}
button:hover {
background-color: #374151;
}
.image-container {
flex: 1;
background-image: url('./newsletter.jpg');
background-size: cover;
background-position: center;
border-top-right-radius: 12px;
border-bottom-right-radius: 12px;
}