/* LPS Elementor Newsletter
   Scoped to .lpsnl-wrap so it does not interfere with Elementor/global theme styles.
*/

.lpsnl-wrap,
.lpsnl-wrap * {
    box-sizing: border-box;
}

.lpsnl-wrap {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    font-family: inherit;
}

.lpsnl-form {
    width: 100%;
    background: #0b0718;
    border-radius: 20px;
    padding: 44px 40px 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin: 0;
}

.lpsnl-input-row {
    width: 100%;
    display: flex;
    justify-content: center;
}

.lpsnl-wrap input[type="email"].lpsnl-input {
    width: 100% !important;
    max-width: 720px !important;
    height: 52px !important;
    min-height: 52px !important;
    margin: 0 !important;
    padding: 0 24px !important;

    background: #ffffff !important;
    color: #111111 !important;
    border: 1px solid #00e5ff !important;
    border-radius: 25px !important;
    outline: none !important;

    font-family: inherit !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 52px !important;

    box-shadow: 0 0 12px rgba(0, 229, 255, 0.25) !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease !important;
}

.lpsnl-wrap input[type="email"].lpsnl-input::placeholder {
    color: #666666 !important;
    opacity: 1 !important;
}

.lpsnl-wrap input[type="email"].lpsnl-input:focus {
    border-color: #32efff !important;
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.48) !important;
}

.lpsnl-submit {
    min-width: 150px;
    height: 48px;
    margin: 0;
    padding: 0 28px;

    border: 0;
    border-radius: 8px !important;
    background: white !important;
    color: #070710 !important;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    font-family: inherit !important;
    font-size: 21px !important;
    font-weight: 500;
    line-height: 1;

    cursor: pointer;
    box-shadow: 0 5px 20px rgba(143, 186, 255, 0.14);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.lpsnl-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(165, 152, 255, 0.28);
    filter: brightness(1.04);
}

.lpsnl-submit:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.lpsnl-submit:disabled {
    cursor: wait;
    opacity: .75;
    transform: none;
}

.lpsnl-spinner {
    display: none;
    width: 15px;
    height: 15px;
    border: 2px solid rgba(7, 7, 16, .28);
    border-top-color: #070710;
    border-radius: 50%;
    animation: lpsnl-spin .7s linear infinite;
}

.lpsnl-form.is-loading .lpsnl-spinner {
    display: inline-block;
}

.lpsnl-message {
    display: none;
    width: 100%;
    max-width: 720px;
    margin-top: -12px;
    text-align: center;
    font-size: 14px;
    line-height: 1.45;
}

.lpsnl-message.is-success {
    display: block;
    color: #7cf8d5;
}

.lpsnl-message.is-error {
    display: block;
    color: #ff9daa;
}

@keyframes lpsnl-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .lpsnl-form {
        padding: 30px 20px;
        gap: 22px;
        border-radius: 18px;
    }

    .lpsnl-wrap input[type="email"].lpsnl-input {
        height: 50px !important;
        min-height: 50px !important;
        line-height: 50px !important;
        padding: 0 20px !important;
    }

    .lpsnl-submit {
        min-width: 142px;
        height: 46px;
        font-size: 17px;
    }
}
