.nn-form-wrap {
    max-width: 520px;
    margin: 0 auto;
}

.nn-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Pole email */
.nn-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #222;
}

.nn-field input[type="email"] {
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: 2px solid transparent;
    outline-offset: 2px;
    transition: border-color 0.2s, outline-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.nn-field input[type="email"]:focus,
.nn-field input[type="email"]:focus-visible {
    border-color: #1e3a5f;
    outline-color: #1e3a5f;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.15);
}

/* Klauzule */
.nn-clauses {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nn-clause {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 12px 14px;
}

.nn-clause-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.nn-clause-label input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: #1e3a5f;
    cursor: pointer;
}

.nn-required {
    color: #c0392b;
}

.nn-clause-text {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #e5e7eb;
    font-size: 13px !important;
    color: #666;
    line-height: 1.6;
}

.nn-clause-text a
{
    font-size: 13px !important;
}

.nn-clause-text a:hover
{
    color: #16304f;
}

.nn-clause-text p {
    margin: 0 0 6px;
}

.nn-clause-text p:last-child {
    margin-bottom: 0;
}

/* Przycisk */
.nn-submit {
    margin-top: 4px;
}

.nn-btn {
    display: inline-block;
    padding: 11px 28px;
    background: #1e3a5f;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
}

.nn-btn:hover {
    background: #16304f;
}

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

/* Komunikat odpowiedzi */
.nn-message {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 6px;
    background: #f0f9f0;
    border: 1px solid #c3e6cb;
}

/* Responsywność */
@media (max-width: 480px) {
    .nn-btn {
        width: 100%;
        text-align: center;
    }
}
