<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Premium Newsletter</title>
<style>
body {
margin: 0;
font-family: 'Poppins', sans-serif;
}
.section {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
padding: 80px;
position: relative;
}
.container {
display: flex;
width: 1200px;
max-width: 100%;
align-items: center;
justify-content: space-between;
}
.left {
width: 50%;
color: white;
}
.left h1 {
font-size: 52px;
font-weight: 700;
line-height: 1.2;
}
.left h1 span {
color: #00bfff;
}
.left p {
color: #cfd8dc;
margin: 20px 0;
max-width: 450px;
}
.premium-newsletter-form input {
width: 350px;
padding: 14px 20px;
border-radius: 50px;
border: none;
margin-bottom: 15px;
display: block;
}
.premium-newsletter-form button {
background: linear-gradient(135deg, #00bfff, #0072ff);
color: white;
border: none;
padding: 12px 35px;
border-radius: 50px;
cursor: pointer;
}
.right {
width: 50%;
position: relative;
display: flex;
justify-content: center;
}
.blob-bg {
position: absolute;
width: 480px;
height: 600px;
background: linear-gradient(135deg, #00bfff, #0072ff);
border-radius: 60% 40% 60% 40% / 60% 40% 60% 40%;
z-index: 1;
}
.blob-outline {
position: absolute;
width: 520px;
height: 640px;
border: 2px solid rgba(255,255,255,0.2);
border-radius: 60% 40% 60% 40% / 60% 40% 60% 40%;
z-index: 0;
}
.right img {
width: 450px;
border-radius: 60% 40% 60% 40% / 60% 40% 60% 40%;
position: relative;
z-index: 2;
}
@media (max-width: 768px) {
.container {
flex-direction: column;
text-align: center;
}
.left, .right {
width: 100%;
}
.left h1 {
font-size: 32px;
}
.premium-newsletter-form input {
width: 100%;
}
}
</style>
</head>
<body>
<section class="section">
<div class="container">
<div class="left">
<h1>Subscribe Now<br><span>to Our Newsletter</span></h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<form class="premium-newsletter-form">
<input type="text" placeholder="Name" required>
<input type="email" placeholder="Email" required>
<button type="submit">Send ➤</button>
</form>
</div>
<div class="right">
<div class="blob-outline"></div>
<div class="blob-bg"></div>
<img src="https://via.placeholder.com/550x650" alt="Model Image">
</div>
</div>
</section>
</body>
</html>