/* Logo尺寸一致性调整 - 使登录和注册页面的logo与首页保持一致 */

/* 桌面端logo调整 */
.top_t .op_t_ft1 img {
    height: 32px !important;
    width: auto !important;
    object-fit: contain !important;
    transition: all 0.3s ease !important;
    border-radius: 6px !important;
}

/* 移动端logo调整 */
.wa_mp_top img {
    height: 32px !important;
    width: auto !important;
    object-fit: contain !important;
    transition: all 0.3s ease !important;
    border-radius: 6px !important;
}

/* 响应式调整 */
@media (min-width: 769px) {
    .wa_mp_top { 
        display: none !important; 
    }
}

@media (max-width: 768px) {
    .top_t { 
        display: none !important; 
    }
    .top_t .op_t_ft1 img, 
    .wa_mp_top img { 
        height: 28px !important; 
    }
}

@media (max-width: 480px) {
    .top_t .op_t_ft1 img, 
    .wa_mp_top img { 
        height: 24px !important; 
    }
}

/* Google登录按钮样式调整 */
.lfr_mfr1 {
    text-align: center !important;
    margin-bottom: 33px !important;
}

/* 确保Google登录按钮居中并去掉边框 */
.g_id_signin {
    margin: 0 auto !important;
    display: block !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* 调整OR分隔符的居中 */
.lfr_mfr2 {
    text-align: center !important;
    margin: 25px auto !important;
    display: block !important;
}

/* 优化注册页面状态栏样式 */
.le_mer {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    margin-bottom: 40px !important;
    padding: 20px 0 !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    border-radius: 15px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.le_mer span {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 24px !important;
    background: #ffffff !important;
    color: #6c757d !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border: 2px solid #e9ecef !important;
    border-radius: 25px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
    min-width: 160px !important;
    text-align: center !important;
}

.le_mer span.omm {
    background: linear-gradient(135deg, #1956ff 0%, #4a7cff 100%) !important;
    color: #ffffff !important;
    border-color: #1956ff !important;
    box-shadow: 0 4px 15px rgba(25, 86, 255, 0.3) !important;
    transform: translateY(-2px) !important;
}

.le_mer span:not(.omm):hover {
    background: #f8f9fa !important;
    border-color: #1956ff !important;
    color: #1956ff !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(25, 86, 255, 0.15) !important;
}

/* 添加步骤指示器 */
.le_mer span::before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    right: -30px !important;
    width: 20px !important;
    height: 2px !important;
    background: linear-gradient(90deg, #1956ff, #e9ecef) !important;
    transform: translateY(-50%) !important;
    z-index: 1 !important;
}

.le_mer span:last-child::before {
    display: none !important;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .le_mer {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 15px !important;
    }
    
    .le_mer span {
        min-width: 140px !important;
        font-size: 13px !important;
        padding: 10px 20px !important;
    }
    
    .le_mer span::before {
        display: none !important;
    }
}
