﻿.login-section {
        position: relative;
        width: 100%;
        margin: 0;
        padding: 92px 0 90px;
        min-height: calc(100vh - 66px);
        background:
            radial-gradient(circle at 20% 26%, rgba(255, 145, 54, .18), transparent 30%),
            radial-gradient(circle at 78% 28%, rgba(255, 183, 112, .16), transparent 34%),
            url("../../img/home-2026/banner-login.png") top 92px center / min(1280px, calc(100% - 48px)) auto no-repeat,
            linear-gradient(180deg, #fff2e5 0%, #fff8f1 46%, #f8fafc 100%),
            #fff7ee;
        overflow: hidden;
        isolation: isolate;
    }
    .login-section:before,
    .login-section:after {
        content: "";
        position: absolute;
        z-index: -1;
        pointer-events: none;
    }
    .login-section:before {
        left: 50%;
        top: 80px;
        width: min(1340px, calc(100% - 24px));
        height: 420px;
        border-radius: 18px;
        background:
            linear-gradient(90deg, rgba(255, 242, 229, .28), rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 82%, rgba(255, 242, 229, .28)),
            linear-gradient(180deg, rgba(255, 255, 255, 0) 68%, rgba(255, 242, 229, .42) 100%);
        transform: translateX(-50%);
    }
    .login-section:after {
        left: 0;
        right: 0;
        bottom: 0;
        height: 46%;
        background: linear-gradient(180deg, rgba(255, 239, 224, 0), #f8fafc 74%);
    }
    .login-container {
        position: relative;
        z-index: 1;
        width: 1280px;
        max-width: calc(100% - 48px);
        min-height: 360px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
        align-items: center;
        justify-content: space-between;
        gap: 64px;
    }

    /* ====== 左侧背景图占位 ====== */
    .login-left {
        min-width: 0;
        min-height: 360px;
    }

/* ====== 鍙充晶鍗＄墖 ====== */
    .login-right { width: 100%; max-width: 420px; min-width: 0; }
    .login-card {
        position: relative;
        background: rgba(255, 255, 255, .92);
        border: 1px solid rgba(255, 209, 170, .72);
        border-radius: 16px;
        box-shadow: 0 24px 70px rgba(226, 116, 48, 0.16);
        backdrop-filter: blur(10px);
        padding: 40px 38px 30px;
    }
    .login-card:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 4px;
        border-radius: 16px 16px 0 0;
        background: linear-gradient(90deg, #ff6a1a, #ff9f43);
    }

    /* Tab */
    .login-tabs {
        display: flex; gap: 0;
        border-bottom: 1px solid #edf0f5;
        margin-bottom: 28px;
    }
    .login-tab {
        font-size: 17px; color: #7b8494;
        padding: 12px 4px 13px; margin-right: 24px;
        cursor: pointer; position: relative;
        transition: all 0.3s;
        border-bottom: 3px solid transparent;
        margin-bottom: -1px;
    }
    .login-tab:hover { color: #666; }
    .login-tab.active { color: #111827; font-weight: 700; border-bottom-color: #ff6600; }

    /* 杈撳叆妗?*/
    .login-input-group {
        display: flex; align-items: center;
        border: 1px solid #e1e6ef; border-radius: 8px;
        padding: 0 13px; margin-bottom: 16px;
        transition: all 0.3s; background: #fff;
    }
    .login-input-group:focus-within {
        border-color: #ff6600;
        box-shadow: 0 0 0 2px rgba(255,102,0,0.08);
    }
    .login-input-icon {
        font-size: 16px; color: #bbb;
        margin-right: 10px; flex-shrink: 0;
        width: 20px; text-align: center;
    }
    .login-input {
        flex: 1; height: 44px;
        border: none; outline: none;
        font-size: 14px; background: transparent; color: #333;
    }
    .login-input::placeholder { color: #ccc; }

    /* 鎻愪氦鎸夐挳 */
    .login-submit-btn {
        width: 100%; height: 46px;
        background: linear-gradient(135deg, #ff6600 0%, #ff7722 100%);
        color: #fff; border: none; border-radius: 8px;
        font-size: 16px; font-weight: 500; cursor: pointer;
        transition: all 0.3s; margin-top: 8px;
    }
    .login-submit-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(255,102,0,0.35);
    }

    /* 搴曢儴閾炬帴 */
    .login-footer-links {
        display: flex; justify-content: space-between;
        margin-top: 16px; font-size: 13px;
    }
    .login-footer-links a { color: #999; transition: color 0.3s; }
    .login-footer-links a:hover { color: #ff6600; }

    /* 蹇樿瀵嗙爜琛ㄥ崟 */
    .forgot-row {
        display: grid;
        grid-template-columns: 66px minmax(0, 1fr);
        align-items: center;
        column-gap: 12px;
        margin-bottom: 18px;
    }
    .forgot-label {
        width: auto; font-size: 14px; color: #4b5563;
        text-align: right; margin-right: 0; flex-shrink: 0;
    }
    .forgot-input {
        width: 100%;
        min-width: 0;
        height: 42px; padding: 0 14px;
        border: 1px solid #e1e6ef; border-radius: 8px;
        font-size: 14px; outline: none; transition: all 0.3s;
        background: #fff;
    }
    .forgot-input:focus { border-color: #ff6600; box-shadow: 0 0 0 2px rgba(255,102,0,0.08); }
    .forgot-radio-group { display: flex; gap: 15px; }
    .forgot-radio-group label {
        font-size: 13px; color: #666; cursor: pointer;
        display: flex; align-items: center; gap: 4px;
    }
    .forgot-captcha-row {
        grid-template-columns: 66px minmax(0, 1fr) 96px;
        align-items: center;
    }
    .forgot-captcha-input { min-width: 0; }
    .forgot-captcha-img {
        width: 96px;
        height: 42px;
        margin-left: 0;
        cursor: pointer; border-radius: 8px; flex-shrink: 0;
        border: 1px solid #e1e6ef;
        object-fit: cover;
    }
    .forgot-captcha-row .btn-captcha {
        width: 96px;
        height: 42px;
        padding: 0;
        border-radius: 8px;
        border: 1px solid #ff6600;
        background: #fff;
        color: #ff6600;
        font-size: 13px;
        line-height: 40px;
        white-space: nowrap;
    }
    .forgot-captcha-row .btn-captcha:hover {
        background: #ff6600;
        color: #fff;
    }
    .forgot-captcha-row .btn-captcha.disabled {
        border-color: #ddd;
        background: #f5f5f5;
        color: #999;
    }
    .forgot-back-link {
        display: inline-block; margin-top: 14px; font-size: 13px;
        color: #999; text-align: center; width: 100%;
        cursor: pointer; transition: color 0.3s;
    }
    .forgot-back-link:hover { color: #ff6600; }

    @media (max-width: 992px) {
        .login-container {
            width: min(86%, 520px);
            max-width: none;
            min-height: auto;
            grid-template-columns: 1fr;
            gap: 28px;
        }
        .login-left { display: none; }
        .login-right { width: 100%; max-width: 400px; justify-self: center; }
        .login-section {
            padding: 268px 0 56px;
            background-size: auto, auto, min(720px, calc(100% - 28px)) auto, auto, auto;
            background-position: center, center, top 72px center, center, center;
        }
        .login-card { padding: 28px 24px 22px; }
        .login-tabs { margin-bottom: 22px; }
        .login-tab { font-size: 14px; margin-right: 18px; }
    }
    @media (max-width: 480px) {
        .login-container { width: 92%; }
        .login-left { display: none; }
        .login-section {
            padding-top: 182px;
            background-size: auto, auto, calc(100% - 24px) auto, auto, auto;
            background-position: center, center, top 58px center, center, center;
        }
        .login-card { padding: 22px 18px 18px; }
        .login-right { width: 100%; }
        .login-tab { font-size: 13px; margin-right: 14px; padding: 8px 3px; }
        .login-input-group { margin-bottom: 14px; }
        .login-input { height: 40px; font-size: 13px; }
        .login-submit-btn { height: 42px; font-size: 15px; }
        .forgot-row { display: block; }
        .forgot-label { display: block; width: auto; text-align: left; margin-bottom: 7px; margin-right: 0; }
        .forgot-input { width: 100%; }
        .forgot-captcha-row {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 92px;
            gap: 0 8px;
        }
        .forgot-captcha-row .forgot-label { grid-column: 1 / -1; }
        .forgot-captcha-img { width: 92px; }
        .forgot-captcha-row .btn-captcha { width: 92px; }
    }

