/**
 * Webb-TV Nyhetsbrev — Signup Form Styles
 */

.wbtv-nl-form {
    max-width: 520px;
    margin: 24px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.wbtv-nl-form__content {
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 24px;
}

.wbtv-nl-form__heading {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.wbtv-nl-form__text {
    margin: 0 0 16px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.wbtv-nl-form__fields {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.wbtv-nl-form .wbtv-nl-form__input {
    flex: 1;
    padding: 10px 14px !important;
    font-size: 15px !important;
    border: 1px solid #ccc !important;
    border-radius: 6px !important;
    background: #fff !important;
    color: #1a1a1a !important;
    outline: none;
    transition: border-color 0.2s;
    height: auto !important;
    box-shadow: none !important;
}

.wbtv-nl-form__input:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.15);
}

.wbtv-nl-form__input::placeholder {
    color: #999;
}

.wbtv-nl-form .wbtv-nl-form__button {
    padding: 10px 20px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #fff !important;
    background-color: #0066cc !important;
    background-image: none !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    white-space: nowrap;
    transition: background-color 0.2s;
    line-height: normal !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    box-shadow: none !important;
}

.wbtv-nl-form .wbtv-nl-form__button:hover {
    background-color: #0052a3 !important;
    color: #fff !important;
}

.wbtv-nl-form .wbtv-nl-form__button:disabled {
    background-color: #999 !important;
    cursor: not-allowed !important;
}

.wbtv-nl-form__consent {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    cursor: pointer;
}

.wbtv-nl-form__consent input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
}

.wbtv-nl-form__consent a {
    color: #0066cc;
    text-decoration: none;
}

.wbtv-nl-form__consent a:hover {
    text-decoration: underline;
}

/* Meddelanden */
.wbtv-nl-form__message {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
}

.wbtv-nl-form__message--success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.wbtv-nl-form__message--error {
    background-color: #fbe9e7;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* Responsivt */
@media (max-width: 480px) {
    .wbtv-nl-form__fields {
        flex-direction: column;
    }

    .wbtv-nl-form__button {
        width: 100%;
        padding: 12px 20px;
    }

    .wbtv-nl-form__content {
        padding: 20px 16px;
    }
}
