body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

/* Layout split */
.split-left {
    background-color: #1e3741;
    min-height: 100vh;
    position: relative;
    color: #fff;
}

@media (max-width: 767.98px) {
    .split-left {
        min-height: 55vh;
    }
}

.logo-wrapper {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 2;
}

    /* Make SVG responsive and prevent clipping */
    .logo-wrapper .logo-svg {
        display: block;
        width: 180px; /* desktop size */
        max-width: 100%;
        height: auto;
    }

/* Optional: nice hover effect if clickable */
.logo-link {
    display: inline-block;
}

    .logo-link:hover .logo-svg {
        opacity: 0.9;
    }

/* Mobile tweaks */
@media (max-width: 767.98px) {
    .logo-wrapper {
        top: 20px;
        left: 20px;
    }

        .logo-wrapper .logo-svg {
            width: 140px;
        }
}


/* Text block at 1/3 from top */
.left-text {
    position: absolute;
    top: 33%;
    left: 40px;
    max-width: 420px;
    z-index: 2;
    line-height: 1.2;
    font-weight: 700;
}

    .left-text .line-main {
        font-size: 2rem;
    }

    .left-text .line-highlight {
        font-size: 2rem;
        color: #e83c2c;
    }

.split-right {
    position: relative;
    min-height: 100vh;
    background: #e83c2c;
}

@media (max-width: 767.98px) {
    .split-right {
        min-height: 20vh;
    }
}

/* Right column content */
.newsletter-bar {
    background: #e83c2c;
    padding: 40px 20px;
    width: 100%;
    position: absolute;
    top: 33%;
    left: 0;
}

/* Inner block */
.form-block {
    max-width: 600px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

.form-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

/* White rounded pill wrapper */
.email-field {
    background: #ffffff;
    border-radius: 40px;
    padding: 6px 6px 6px 20px;
    display: flex;
    align-items: center;
}

.email-input {
    border: none;
    box-shadow: none;
    outline: none;
    flex: 1;
    padding-left: 0;
}

    .email-input::placeholder {
        color: #8fa3b0;
    }

.send-btn {
    background: #c7dbe3;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 600;
    color: #1a2f38;
    display: flex;
    align-items: center;
    cursor: pointer;
}

    .send-btn .arrow {
        font-size: 1.2rem;
        margin-left: 6px;
    }

    .send-btn:hover {
        opacity: 0.85;
    }

    .send-btn.disabled {
        opacity: 0.5;
        pointer-events: none;
    }
