body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #003366, #007BFF);
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.coming-soon-container {
    max-width: 600px;
    padding: 40px;
    background-color: rgba(0, 0, 50, 0.4);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
}

.email-signup {
    margin-top: 30px;
}

input[type="email"] {
    padding: 10px;
    width: 70%;
    max-width: 300px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

input[type="submit"] {
    padding: 10px 20px;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}
