/* Reset some default styles */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General styles */
body {
    font-family: 'Arial', sans-serif;
    background: url('placeholder-bg.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.container {
    padding: 20px;
    max-width: 600px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.logo {
    width: 300px;
    height: auto;
    margin: 0 auto 10px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    display: block;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.social-icons a img {
    width: 20px;
    height: auto;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.email-form {
    margin-top: 20px;
}

.email-form input[type="email"] {
    width: 70%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-right: 5px;
}

.email-form button {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: #000;
    color: #fff;
    cursor: pointer;
}

.email-form button:hover {
    background-color: #444;
}
