/* [admax_hirlevel] — feliratkozó űrlap (sötét teál gradientes .hirlevel szekcióra). */

.nl__form-row {
    display: flex;
    gap: 11px;
    flex-wrap: wrap;
}

.nl__input {
    flex: 1;
    min-width: 179px;
    background: #F1F7F4;
    color: #16332E;
    border: none;
    border-radius: 100px;
    padding: 15px 20px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    outline: none;
}

.nl__input::placeholder {
    color: rgba(22, 51, 46, 0.45);
}

.nl__input:focus {
    box-shadow: 0 0 0 2px rgba(95, 189, 168, 0.55);
}

.nl__submit {
    flex: none;
    background: #A7EBDD;
    color: #1E3A38;
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 13px;
    padding: 15px 27px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: background 0.2s ease, transform 0.12s ease;
}

.nl__submit:hover {
    background: #FFFFFF;
}

.nl__submit:active {
    transform: scale(0.97);
}

.nl__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.nl.is-loading .nl__submit {
    pointer-events: none;
    opacity: 0.7;
}

.nl__consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 14px;
    font-size: 11px;
    color: #bcd7ce;
    font-weight: 500;
    line-height: 1.5;
    cursor: pointer;
}

.nl__consent input {
    margin-top: 2px;
    accent-color: #A7EBDD;
    width: 14px;
    height: 14px;
    flex: none;
}

.nl__consent a {
    color: #A7EBDD;
    font-weight: 700;
}

.nl__consent p {
    margin: 0;
}

.nl__msg {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.5;
    color: #bcd7ce;
}

.nl__msg.is-success {
    color: #A7EBDD;
}

.nl__msg.is-error {
    color: #ff8f8f;
}

@media (max-width: 767px) {
    .nl__form-row {
        flex-direction: column;
        align-items: stretch;
        gap: 11px;
    }

    .nl__input {
        min-width: 0;
        width: 100%;
    }

    .nl__submit {
        width: 100%;
    }
}
