.contain_zzzx {
    max-width: 780px;
    margin: 40px auto;
    padding: 35px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.log_off_title {
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    font-size: 28px;
    color: var(--text-color);
}

.contain_zzzx p.no-indent {
    text-indent: 0;
    margin: 12px 0;
}

.contain_zzzx p {
    line-height: 1.85;
    margin: 12px 0;
    color: var(--text-color);
    font-size: 15px;
    text-indent: 2em;
}

.text-danger {
    color: #e74c3c;
    font-weight: 600;
}

.self-logout-form {
    margin-top: 40px;
    text-align: center;
}

.self-logout-form label {
    display: inline-block;
    margin: 15px 0;
    font-weight: 500;
    color: var(--text-color);
    font-size: 15px;
}

.pwd-item {
    margin: 22px 0;
}

.pwd-item label {
    display: block;
    margin-bottom: 8px;
}

.pwd-item input[type="password"] {
    width: 85%;
    max-width: 420px;
    padding: 11px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--input-bg);
    color: var(--text-color);
    font-size: 15px;
}

.self-logout-button {
    display: block;
    width: 220px;
    margin: 15px auto 0;
    background-color: #e74c3c;
    color: #fff;
    padding: 14px 0;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.25s ease;
}

.self-logout-button:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.25);
}

.self-logout-button:disabled {
    background-color: #f1948a;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.admin_button,
.parent-element {
    text-align: center;
    margin: 30px 0;
}

.admin_button input {
    padding: 12px 32px;
    border-radius: 10px;
    background: #555;
    color: #fff;
    border: none;
    font-size: 15px;
}

.dark-theme .contain_zzzx {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}
.dark-theme .text-danger {
    color: #ff6868;
}

/* 新增输入框兼容样式 解决日夜模式文字看不见 */
.pwd-item input[type="password"]:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

.pwd-item input[type="password"] {
    background: var(--input-bg, #ffffff);
    color: var(--text-color, #222222);
    border: 1px solid var(--border-color, #dddddd);
}

.dark-theme .pwd-item input[type="password"] {
    background: var(--input-bg, #2d2d30);
    color: var(--text-color, #f0f0f0);
    border: 1px solid var(--border-color, #444444);
}