/* ============================================================
   认证申请表 - 通用表单（credit-apply.html）
   ============================================================ */

.panel-title-highlight { color: #d32f2f; font-weight: 600; }

.apply-form {
    background: #ffffff;
    border: 1px solid #e7edf4;
    border-radius: 12px;
    padding: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 24px;
    margin-bottom: 22px;
}

.form-row:last-of-type { margin-bottom: 0; }

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full { grid-column: 1 / -1; }

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #16263c;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    color: #16263c;
    background: #fafbfc;
    border: 1px solid #d4deea;
    border-radius: 8px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    box-sizing: border-box;
}

.form-input::placeholder,
.form-textarea::placeholder { color: #9aa7b8; }

.form-input:focus,
.form-textarea:focus {
    background: #ffffff;
    border-color: var(--primary-blue, #0a4da6);
    box-shadow: 0 0 0 3px rgba(10, 77, 166, 0.08);
}

.form-textarea {
    resize: vertical;
    line-height: 1.7;
    min-height: 110px;
}

.form-notice-inline {
    margin: 0;
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1.8;
    color: #d32f2f;
    background: #fff5f5;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.form-submit {
    min-width: 160px;
    padding: 12px 40px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    background: var(--primary-blue, #0a4da6);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.form-submit:hover {
    background: #083c85;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(10, 77, 166, 0.25);
}

/* 申报流程示意图 */
.apply-flow-img {
    margin: 24px 0 8px;
    padding: 16px;
    background: #f7faff;
    border: 1px solid #e6eef9;
    border-radius: 12px;
    text-align: center;
}

.apply-flow-img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.apply-flow-img figcaption {
    margin-top: 12px;
    font-size: 14px;
    color: #55617a;
}

/* 响应式 */
@media (max-width: 768px) {
    .apply-form { padding: 22px 18px; }

    .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 18px;
    }

    .form-label { font-size: 13px; }

    .form-input,
    .form-textarea { padding: 11px 12px; font-size: 13px; }

    .form-submit {
        width: 100%;
        padding: 12px 24px;
    }
}
