/* jump.css — 系統提示頁 / 登入引導頁 / 注冊頁 */

.jump-main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--topbar-h) - 80px);
    padding: 40px 16px;
}

.jump-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px 40px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
}

.jump-card--form {
    text-align: left;
    max-width: 480px;
}

.jump-icon {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 16px;
    line-height: 1;
}

.jump-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 12px;
}

.jump-msg {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 8px;
}

.jump-hint {
    font-size: 13px;
    color: var(--text-3);
    margin-bottom: 28px;
}

.jump-hint b {
    color: var(--accent);
    font-size: 16px;
}

.jump-hint a {
    color: var(--accent);
    text-decoration: underline;
}

.jump-error {
    font-size: 13px;
    color: #f56565;
    background: rgba(245, 101, 101, .1);
    border: 1px solid rgba(245, 101, 101, .2);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    margin-bottom: 16px;
    text-align: center;
}

.jump-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.jump-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 28px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s;
}

.jump-btn:hover {
    background: var(--accent-hover);
}

.jump-btn--outline {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.jump-btn--outline:hover {
    background: var(--accent-light);
}

/* ===== modal-form (reg 頁重用 header modal 樣式) ===== */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 16px;
}

.modal-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modal-label {
    font-size: 12px;
    color: var(--text-2);
    font-weight: 500;
}

.modal-input {
    height: 40px;
    padding: 0 12px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-sm);
    color: var(--text-1);
    font-size: 14px;
    outline: none;
    transition: border-color .15s;
}

.modal-input:focus {
    border-color: var(--accent);
}

.modal-submit {
    height: 42px;
    background: var(--accent);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background .15s;
}

.modal-submit:hover {
    background: var(--accent-hover);
}

.modal-footer {
    font-size: 13px;
    color: var(--text-3);
    text-align: center;
    margin-top: 8px;
}

.modal-link--accent {
    color: var(--accent);
    text-decoration: none;
}

.modal-link--accent:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .jump-card {
        padding: 32px 20px;
    }
}
