/* PLUSstack — Public Subscribe Widget */

.ps-subscribe-widget {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 28px 32px;
    max-width: 480px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.ps-subscribe-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #111827;
}

.ps-subscribe-desc {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 20px;
}

.ps-form-row {
    margin-bottom: 12px;
}

.ps-form-row--half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ps-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    color: #111827;
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
    box-sizing: border-box;
}

.ps-input:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 3px rgba(34,113,177,.15);
}

.ps-btn {
    width: 100%;
    padding: 12px;
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s;
}

.ps-btn:hover  { background: #135e96; }
.ps-btn:active { background: #0d4b7a; }
.ps-btn:disabled { background: #9ca3af; cursor: not-allowed; }

.ps-form-message {
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.4;
}
.ps-form-message--success { background: #d1fae5; color: #065f46; }
.ps-form-message--error   { background: #fee2e2; color: #991b1b; }

@media (max-width: 480px) {
    .ps-subscribe-widget { padding: 20px; }
    .ps-form-row--half { grid-template-columns: 1fr; }
}
