/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* UNIFIED BACKGROUND: Pure white for the whole page */
    background-color: #ffffff; 
    color: #333;
}

/* MAIN WRAPPER - Removed card styling (shadows/bg) */
.main-wrapper {
    display: flex; 
    width: 100%;
    max-width: 1200px; 
    /* Removed background-color, border-radius, and box-shadow */
}

/* --- LEFT SIDE (Image) --- */
.image-side {
    flex: 1; 
    padding: 40px;
    display: flex;
    justify-content: center; /* Center image horizontally */
    align-items: center;     /* Center image vertically */
    /* Removed background-color here so it blends with body */
}

.image-side img {
    width: 100%;
    height: auto;
    max-width: 600px; /* Increased slightly since there is no card border now */
    object-fit: contain;
}

/* --- RIGHT SIDE (Content) --- */
.content-side {
    flex: 1; 
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    text-align: left; 
}

/* Typography */
.main-title {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem; /* Made slightly bigger */
    line-height: 1.1;
    color: #2c3e50; 
    margin-bottom: 25px;
}

.subtitle {
    font-size: 1.2rem;
    color: #7f8c8d; 
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
}

/* The specific "Get ready!" styling */
.highlight {
    color: #00c8ff; /* Bright cyan blue */
    font-weight: 700;
}

/* --- FORM STYLING --- */
.notify-form {
    display: flex;
    gap: 15px;
    width: 100%;
    max-width: 550px; 
}

input[type="email"] {
    flex-grow: 1; 
    padding: 18px 30px;
    border-radius: 50px; 
    /* Added a visible border since the background is white now */
    border: 2px solid #e0e0e0; 
    background-color: #f9f9f9; 
    font-size: 1rem;
    color: #333;
    outline: none;
    transition: all 0.3s;
}

input[type="email"]:focus {
    border-color: #00c8ff; 
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 200, 255, 0.1);
}

button {
    padding: 18px 40px;
    border-radius: 50px; 
    border: none;
    background: linear-gradient(90deg, #00c8ff, #0080ff);
    color: white;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 10px 20px -10px rgba(0, 200, 255, 0.5); 
    transition: transform 0.2s ease, box-shadow 0.2s;
    white-space: nowrap; 
}

button:hover {
    transform: translateY(-3px); 
    box-shadow: 0 15px 30px -10px rgba(0, 200, 255, 0.7);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 968px) {
    .main-wrapper {
        flex-direction: column; 
    }

    .image-side, .content-side {
        padding: 30px 20px;
        text-align: center; 
        align-items: center; 
    }

    .image-side img {
        max-width: 350px; 
    }

    .main-title {
        font-size: 3.5rem;
    }

    .notify-form {
        flex-direction: column; 
        width: 100%;
    }

    input[type="email"], button {
        width: 100%; 
    }
}