.ceb-nl {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    max-width: 720px;
    margin: 0 auto;
}

.ceb-nl__inner {
    background: linear-gradient(135deg, #FFF7ED 0%, #FEF3C7 100%);
    border-radius: 16px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.ceb-nl__title {
    font-family: 'League Spartan', 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 8px;
    line-height: 1.2;
}

.ceb-nl__sub {
    font-size: 15px;
    color: #64748B;
    margin: 0;
    line-height: 1.6;
    max-width: 480px;
}

.ceb-nl__form {
    width: 100%;
    max-width: 480px;
}

.ceb-nl__fields {
    display: flex;
    gap: 10px;
    width: 100%;
}

input[type="email"].ceb-nl__email,
.ceb-nl .ceb-nl__email {
    flex: 1 !important;
    width: auto !important;
    max-width: 100% !important;
    padding: 14px 18px !important;
    border: 2px solid #E2E8F0 !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    font-family: 'Inter', sans-serif !important;
    color: #0F172A !important;
    background: #fff !important;
    outline: none !important;
    transition: border-color .2s;
    box-sizing: border-box !important;
    height: auto !important;
    margin: 0 !important;
}

input[type="email"].ceb-nl__email:focus,
.ceb-nl .ceb-nl__email:focus {
    border-color: #F37015 !important;
}

.ceb-nl__email::placeholder {
    color: #94A3B8;
}

.ceb-nl__btn {
    padding: 14px 28px;
    background: #F37015;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s, transform .1s;
}

.ceb-nl__btn:hover {
    background: #d9600e;
}

.ceb-nl__btn:active {
    transform: scale(.97);
}

.ceb-nl__btn:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.ceb-nl__msg {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    min-height: 0;
    transition: min-height .3s;
}

.ceb-nl__msg--success {
    color: #15803D;
}

.ceb-nl__msg--error {
    color: #DC2626;
}

.ceb-nl__msg--loading {
    color: #64748B;
}

.ceb-nl__privacy {
    margin: 14px 0 0;
    font-size: 12px;
    color: #94A3B8;
    line-height: 1.5;
}

.ceb-nl__coupon {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 20px;
    background: #fff;
    border: 2px dashed #F37015;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 900;
    color: #F37015;
    letter-spacing: .05em;
}

@media (max-width: 600px) {
    .ceb-nl__inner {
        padding: 28px 20px;
    }

    .ceb-nl__title {
        font-size: 22px;
    }

    .ceb-nl__fields {
        flex-direction: column;
    }

    .ceb-nl__btn {
        width: 100%;
    }
}
