/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #e3f2fd; /* Light blue background */
    color: #212529;
}

.coming-soon-container {
    text-align: center;
    padding: 40px 20px;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #1a73e8; /* Blue text */
}

p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

input[type="email"] {
    width: 80%;
    padding: 10px;
    margin-bottom: 20px;
    border: 2px solid #1a73e8; /* Blue border */
    border-radius: 4px;
    outline: none;
    font-size: 1em;
}

button {
    width: 50%;
    padding: 10px;
    background-color: #1a73e8; /* Blue button */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #1967d2; /* Darker blue on hover */
}

/* Social Media Icons (Optional) */
.social-icons {
    margin-top: 40px;
}

.social-icons a {
    margin: 0 10px;
    text-decoration: none;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

/* Responsive Styles */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5em;
    }

    p {
        font-size: 1em;
    }

    input[type="email"], button {
        width: 90%;
    }
}