:root {
            --primary-color: #4e73df;
            --secondary-color: #858796;
            --success-color: #1cc88a;
            --info-color: #36b9cc;
            --warning-color: #f6c23e;
            --danger-color: #e74a3b;
        }
        
        .ElementId{
    display: none;
}
        
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.65);
            backdrop-filter: blur(5px);
            z-index: -1;
        }
        .btn-sign-up {
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 4px;
            padding: 10px 25px;
            font-weight: 600;
        }
        
      
        .auth-container {
            width: 100%;
            max-width: 450px;
            margin-left: 120px;
            padding: 40px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 10px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }
        
        .auth-header {
            text-align: center;
        }
        
        .auth-header h2 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 10px;
        }
        .btn-login{
            color: var(--primary-color);
            border: 1px solid var(--primary-color);
            border-radius: 4px;
            padding: 10px 25px;
        }
        .auth-header p {
            color: var(--secondary-color);
            font-size: 0.9rem;
        }
        
        .form-control {
            height: 50px;
            border-radius: 5px;
            border: 1px solid #d1d3e2;
            padding-left: 15px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            height: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: #2e59d9;
            border-color: #2653d4;
        }
        
        .form-check-input:checked {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .auth-footer {
            text-align: center;
            margin-top: 20px;
            color: var(--secondary-color);
        }
        
        .auth-footer a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .auth-footer a:hover {
            color: #2e59d9;
            text-decoration: underline;
        }
        
        /* 登录页面左侧宣传文字区域 */
        .auth-wrapper {
            display: flex;
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
        }
        
        .auth-promo {
            flex: 1;
            padding: 40px;
            color: white;
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .auth-promo-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 60px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .auth-promo-subtitle {
            opacity: 0.9;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
            line-height: 1.6;
        }
        
        
        
        .btn-sign-up:hover {
            box-shadow: 0 8px 25px var(--primary-color);
            color: white;
        }
        
        .btn-login:hover {
            box-shadow: 0 8px 25px var(--primary-color);
            color: var(--primary-color);
        }
        .input-group-text {
            background-color: #f8f9fc;
            border: 1px solid #d1d3e2;
            color: var(--secondary-color);
        }
        .nav-link {
            margin: 0 15px;
            padding: .5rem;
        }
       
        .captcha-img {
            height: 50px;
            cursor: pointer;
            border-radius: 0 5px 5px 0;
        }
        
        /* 导航栏样式 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 0;
        }
        
        .navbar-brand {
            color: var(--primary-color) !important;
            font-weight: 700;
            font-size:1.8rem;
        }
        
        .nav-link {
            color: #fff !important;
            font-weight: 600;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .main-content {
            margin-top: 60px;
        }
        
        @media (max-width: 768px) {
            body {
                padding-right: 0;
                justify-content: center;
            }
            
            .auth-wrapper {
                flex-direction: column;
                max-width: 100%;
            }
            
            .auth-promo {
                padding: 30px 20px;
                text-align: center;
            }
            
            .auth-promo-title {
                font-size: 2rem;
            }
            
            .auth-promo-features li {
                justify-content: center;
            }
            
            .auth-container {
                margin: 15px;
                padding: 30px;
                max-width: 90%;
            }
        }
        
        /* 加载动画 */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }
        
        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 5px solid #f3f3f3;
            border-top: 5px solid #4e73df;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* 表单错误提示 */
        .invalid-feedback {
            display: none;
            color: #e74a3b;
            font-size: 0.875em;
            margin-top: 0.25rem;
        }
        
        .was-validated .form-control:invalid ~ .invalid-feedback,
        .was-validated .form-control:invalid ~ .invalid-tooltip {
            display: block;
        }