body, html {
height: 100%;
margin: 0;
font-family: 'Open Sans', sans-serif;
background: url('your-background-image.jpg') no-repeat center center fixed;
background-size: cover;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.container {
background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
padding: 40px;
border-radius: 10px;
}
.logo {
width: 100px;
margin-bottom: 20px;
}
h1 {
font-family: 'Montserrat', sans-serif;
font-size: 3em;
margin-bottom: 10px;
}
p {
font-size: 1.2em;
margin-bottom: 30px;
}
input[type="email"] {
padding: 15px;
width: 250px;
border: none;
border-radius: 5px;
margin-right: 10px;
}
button {
padding: 15px 30px;
background-color: #FF6F61; /* Accent color */
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-weight: bold;
}
.social-media {
margin-top: 30px;
}
.social-media a {
color: #fff;
text-decoration: none;
margin: 0 15px;
font-size: 1.2em;
}