/* Nielco Newsletter — Frontend tilmeldingsformular */

.nn-form-wrap {
    max-width: 480px;
    margin: 0 auto;
    font-family: inherit;
}

.nn-form {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 28px 32px;
}

.nn-field {
    margin-bottom: 16px;
}

.nn-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.nn-field input[type="text"],
.nn-field input[type="email"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    color: #111827;
    background: #fff;
    box-sizing: border-box;
    transition: border-color .15s;
}

.nn-field input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

.nn-req {
    color: #dc2626;
    margin-left: 2px;
}

.nn-gdpr {
    margin-bottom: 16px;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}
.nn-gdpr label { display: flex; gap: 8px; align-items: flex-start; }
.nn-gdpr input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; }

.nn-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #1d4ed8;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s;
}
.nn-btn:hover    { background: #1e40af; }
.nn-btn:disabled { background: #93c5fd; cursor: not-allowed; }

.nn-msg {
    font-size: 13px;
    min-height: 18px;
    margin-bottom: 8px;
}

.nn-success {
    text-align: center;
    padding: 20px;
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    border-radius: 8px;
    color: #065f46;
    font-size: 15px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 480px) {
    .nn-form { padding: 20px 18px; }
}
