/* ── iSt101 My Subscribers – Frontend ── */
.ist101-wrap {
    max-width: 480px;
    margin: 20px auto;
    padding: 24px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
    font-family: inherit;
}
.ist101-active  { border-left: 4px solid #2ecc71; }
.ist101-expired { border-left: 4px solid #e74c3c; }

.ist101-content { margin-bottom: 16px; }

.ist101-login-form h3 {
    margin: 0 0 16px;
    font-size: 1.1em;
    color: #333;
}
.ist101-field { margin-bottom: 14px; display: flex; flex-direction: column; gap: 4px; }
.ist101-field label { font-weight: 600; font-size: .9em; color: #444; }
.ist101-field input {
    padding: 9px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: .95em;
    transition: border-color .2s;
}
.ist101-field input:focus { outline: none; border-color: #3498db; }

.ist101-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: .95em;
    transition: background .2s;
}
.ist101-btn:hover { background: #2980b9; }
.ist101-btn-logout { background: #95a5a6; margin-top: 12px; }
.ist101-btn-logout:hover { background: #7f8c8d; }

.ist101-error {
    background: #fdecea;
    color: #c0392b;
    border: 1px solid #e74c3c;
    border-radius: 5px;
    padding: 10px 14px;
    margin-bottom: 14px;
    font-size: .9em;
}
.ist101-blocked { background: #2c3e50; color: #ecf0f1; border-color: #2c3e50; }

.ist101-logout-form { margin-top: 12px; }