@charset "UTF-8";
/* CSS Document */

/* Base Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0); /* Soft neutral gradient */
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    text-align: center;
}

.logo {
    margin-bottom: 30px;
}

.message h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #004d80; /* Keeping it dark blue to match logo color */
}

.message p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #006080; /* A darker blue for readability */
}

.email-signup {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.email-signup input[type="email"] {
    padding: 10px;
    border-radius: 30px 0 0 30px;
    border: none;
    width: 250px;
    margin-bottom: 10px;
    font-size: 16px;
}

.email-signup button {
    padding: 10px 20px;
    border-radius: 0 30px 30px 0;
    border: none;
    background: linear-gradient(135deg, #1e73be, #004d80);
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}

.footer {
    margin-top: 40px;
}

.footer p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer a {
    margin: 0 10px;
    color: #1e73be;
    text-decoration: none;
    font-size: 14px;
}

.footer a:hover {
    color: #004d80;
}

/* Mobile Styles */
@media (max-width: 600px) {
    .message h1 {
        font-size: 28px;
    }

    .message p {
        font-size: 14px;
    }

    .email-signup input[type="email"] {
        width: 220px;
    }

    .email-signup button {
        width: 100%;
        border-radius: 30px;
        margin-top: 10px;
    }

    .footer p, .footer a {
        font-size: 12px;
    }
}
