body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(17, 17, 17);
    color: #fff;
}

.container {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center horizontally */
    justify-content: center; /* Center vertically */
}

.logo-container {
    margin-bottom: 20px; /* Add some space below the logo */
}

.logo {
    
}

.launch-date {
    font-size: 1.2em; /* Style the dynamic text */
    margin-top: 10px;
    color: #00D4FF; /* Optional: Change color to make it stand out */
}

.content {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 400px;
}

.email-form {
    margin-top: 10px;
}

.email-form input[type="email"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: calc(100% - 22px); /* Adjust width to account for padding */
    margin-bottom: 10px;
    background-color: #333;
    color: #fff;
}

.email-form button {
    padding: 12px 25px; /* Slightly larger padding for a modern look */
    border: none;
    border-radius: 25px; /* Rounded corners */
    background: linear-gradient(135deg, #007BFF, #00D4FF); /* Gradient background */
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3); /* Subtle shadow */
    transition: background 0.3s, box-shadow 0.3s; /* Smooth transition */
}

.email-form button:hover {
    background: linear-gradient(135deg, #0056b3, #0094cc); /* Darker gradient on hover */
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5); /* More pronounced shadow on hover */
}